Python格式表格输出[重复]

Python格式表格输出[重复],第1张

Python格式表格输出[重复]

推出自己的格式化功能并不难:

def print_table(table):    col_width = [max(len(x) for x in col) for col in zip(*table)]    for line in table:        print "| " + " | ".join("{:{}}".format(x, col_width[i])          for i, x in enumerate(line)) + " |"table = [(str(x), str(f(x))) for x in mylist]print_table(table)


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5632438.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存