aer*_*ero 1 python formatting list python-3.x
我有一份清单,
L = [['First', 'Last', 'GPA', 'Major', 'Drops'],
['Jane', 'Doe', '3.5', 'CS', '2'], ['Joe', 'Doe', '2.0', 'CpE', '0'],
['Todd', 'Brown', '3.88', 'CS', '5'],
['Mike', 'Smith', '3.88', 'CS', '5']]
Run Code Online (Sandbox Code Playgroud)
我要将它打印在如下表格中:
--------------------------------------------------------
| First| Last| GPA| Major| Drops|
--------------------------------------------------------
| Jane| Doe| 3.50| CS| 2|
| Joe| Doe| 2.00| CpE| 0|
| Todd| Brown| 3.88| CS| 5|
| Mike| Smith| 3.88| CS| 5|
Run Code Online (Sandbox Code Playgroud)
我的代码到目前为止:
L = [['First', 'Last', 'GPA', 'Major', 'Drops'],
['Jane', 'Doe', '3.5', 'CS', '2'],
['Joe', 'Doe', '2.0', 'CpE', '0'],
['Todd', 'Brown', '3.88', 'CS', '5'],
['Mike', 'Smith', '3.88', 'CS', '5']]
count1 = 1
while count1 < len(L):
L[count1][2] = float(L[count1][2])
L[count1][4] = int(L[count1][4])
count1 += 1
h_line = 56 * '-'
first_line = "|"
print (h_line)
s = " "
w = 10
for i in range(len(L[0])):
str1 = (s*(w - len(L[0][i])) + "%s|" % L[0][i])
first_line = first_line + str1
print(first_line)
print(h_line)
a = 1
while a < len(L):
second_line = "|"
for j in range (len(L[a])):
if type(L[a][j]) == str :
str2 = (s*(w - len(L[a][j])) + ("%s|" % L[a][j]))
second_line = second_line + str2
elif type(L[a][j]) == float :
str2 = (s*(w-4) + ("%.2f|" % L[a][j]))
second_line = second_line + str2
elif type(L[a][j]) == float :
str2 = (s*(w-1) + ("%i|" % L[a][j]))
second_line = second_line + str2
print (second_line)
a = a + 1
print (h_line)
Run Code Online (Sandbox Code Playgroud)
但我的输出看起来像:
--------------------------------------------------------
| First| Last| GPA| Major| Drops|
--------------------------------------------------------
| Jane| Doe| 3.50| CS|
| Joe| Doe| 2.00| CpE|
| Todd| Brown| 3.88| CS|
| Mike| Smith| 3.88| CS|
--------------------------------------------------------
Run Code Online (Sandbox Code Playgroud)
我不明白我做错了什么.老乡帮帮我吧!
圣洁的问题,这是错误的方式来解决这个问题!使用字符串格式
L = [['First', 'Last', 'GPA', 'Major', 'Drops'],
['Jane', 'Doe', '3.5', 'CS', '2'], ['Joe', 'Doe', '2.0', 'CpE', '0'],
['Todd', 'Brown', '3.88', 'CS', '5'],
['Mike', 'Smith', '3.88', 'CS', '5']]
def display_table(rows):
template = "|{:>10}|{:>10}|{:>10}|{:>10}|{:>10}|"
horiz_rule = "-" * 56
header = rows[0]
print(horiz_rule)
print(template.format(*header))
print(horiz_rule)
for row in rows[1:]:
print(template.format(*row))
print(horiz_rule)
display_table(L)
Run Code Online (Sandbox Code Playgroud)
如果您需要能够以编程方式指定列宽,则可以使用额外的{并}转义外部格式,例如
template = "|{{:>{0}}}".format(some_width) * num_columns + "|"
## if some_width is 10 and num_columns is 5,
## results in the same template as above. Then you can do:
horiz_rule = 1 + some_width * (num_columns + 1)
Run Code Online (Sandbox Code Playgroud)
作为一个工作示例,也许您希望将每列扩展到最少10个空格,但希望与该列中最长的元素加1对齐.
def display_table(rows):
# might want a sanity check here to make sure the table is square
num_columns = len(rows)
template = "|{{:>{}}}" * len(rows[0]) + "|"
header = rows[0]
# zip(*iterable) is a good recipe for aligning columnwise
column_lengths = [max(10, max(map(len, col)) + 1) for col in zip(*rows)]
finished_template = template.format(*column_lengths)
hr = "-" * (sum(column_lengths) + num_columns + 1)
print(hr)
print(finished_template.format(*header))
print(hr)
for row in rows[1:]:
print(finished_template.format(*row))
print(hr)
display_table(L)
Run Code Online (Sandbox Code Playgroud)
结果是:
--------------------------------------------------------
| First| Last| GPA| Major| Drops|
--------------------------------------------------------
| Jane| Doe| 3.5| CS| 2|
| Joe| Doe| 2.0| CpE| 0|
| Todd| Brown| 3.88| CS| 5|
| Mike| Smith| 3.88| CS| 5|
--------------------------------------------------------
Run Code Online (Sandbox Code Playgroud)
或者,如果您添加姓氏为"SomeReallyLongName"的学生:
L.append(['Foo','SomeReallyLongName','2.0','Mus','10'])
display_table(L)
## OUTPUT
------------------------------------------------------------------
| First| Last| GPA| Major| Drops|
------------------------------------------------------------------
| Jane| Doe| 3.5| CS| 2|
| Joe| Doe| 2.0| CpE| 0|
| Todd| Brown| 3.88| CS| 5|
| Mike| Smith| 3.88| CS| 5|
| Foo| SomeReallyLongName| 2.0| Mus| 10|
------------------------------------------------------------------
Run Code Online (Sandbox Code Playgroud)
看起来最后一位在计算水平规则时有一个一个错误.它对我来说看起来不错,但显然它已经关闭了(一个!)我会把它作为练习给读者留下来.