微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

python 表格打印代码实例解析

这篇文章主要介绍了python 表格打印代码实例解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

编写一个名为printTable()的函数,它接受字符串的列表的列表,将它显示在组织良好的表格中,每列右对齐。假定所有内层列表都包含同样数目的字符串。例如,该值可能看起来像这样:

table_data = [['apples', 'oranges', 'cherries', 'banana'], ['Alice', 'Bob', 'Carol', 'David'], ['dogs', 'cats', 'moose', 'goose']]

你的 printTable()函数将打印出:

apples Alice dogs oranges Bob cats cherries Carol moose banana David goose

示例代码1:

import copy def count_width(the_list): new_list = copy.deepcopy(the_list) col_widths = [0]*len(the_list) i = 0 while i

sort方法

lambda函数

示例代码2:

def count_widths(the_list): col_widths = [0]*len(the_list) for i in range(len(the_list)): for j in range(len(the_list[0])): if len(the_list[i][j]) > max_len: max_len = len(the_list[i][j]) col_widths[i] = max_len return col_widths def list_ljust(the_list): widths = count_widths(the_list) print(widths) for j in range(len(the_list[0])): for i in range(len(the_list)): print(the_list[i][j].ljust(widths[i]), end=' ') print('r') table_data = [['apples', 'oranges', 'cherries', 'banana'], ['Alice', 'Bob', 'Carol', 'David'], ['dogs', 'cats', 'moose', 'goose']] list_ljust(table_data)

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐