美文网首页
2019-12-27图片问题记录

2019-12-27图片问题记录

作者: 晓风大神 | 来源:发表于2019-12-27 10:48 被阅读0次

    使用PrettyTable模块:

    Demo:

    ```

    from prettytableimport PrettyTable

    tb= PrettyTable()

    tb.field_names=["number","Square","Cube"]

    for iin range (1,11):

        i2= i*2

        i3= i**3

        tb.add_row([i,i2,i3])

    print(tb)

    ```

    相关文章

      网友评论

          本文标题:2019-12-27图片问题记录

          本文链接:https://www.haomeiwen.com/subject/ebnroctx.html