美文网首页
Python 使用prettytable模块优雅的输出

Python 使用prettytable模块优雅的输出

作者: DayDayUpppppp | 来源:发表于2017-04-06 15:38 被阅读0次

    prettytable在终端或在浏览器中依然是强大又美观的构建输出。可以在终端输出类似于如下图的格式。


    图片.png
    from prettytable import PrettyTable
    
    def pretty_print():
        trains=[[11,12,13,14,15,16],[21,22,23,24,25,26],[31,32,33,34,35,36]]
        header='list1 list2 list3 list4 list5 list6'.split()
        pt=PrettyTable()
        pt._set_field_names(header)    
        for train in trains:
            pt.add_row(train)
        print(pt)
    
    pretty_print()
    

    相关文章

      网友评论

          本文标题:Python 使用prettytable模块优雅的输出

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