Python 将列表打印为表格数据

Python 将列表打印为表格数据,python,Python,我是Python新手,现在正努力将数据格式化为打印输出 我有一个用于两个标题的列表和一个矩阵,它应该是表的内容。像这样: teams_list = ["Man Utd", "Man City", "T Hotspur"] data = np.array([[1, 2, 1], [0, 1, 0], [2, 4, 2]]) 请注意,标题名称的长度不一定相同。不过,数据项都是整数 现在,我想用一种表格格式来表示它,类似这样: &g

我是Python新手,现在正努力将数据格式化为打印输出

我有一个用于两个标题的列表和一个矩阵,它应该是表的内容。像这样:

teams_list = ["Man Utd", "Man City", "T Hotspur"]
data = np.array([[1, 2, 1],
                 [0, 1, 0],
                 [2, 4, 2]])
请注意,标题名称的长度不一定相同。不过,数据项都是整数

现在,我想用一种表格格式来表示它,类似这样:

>>> print_table(table)

            Man Utd   Man City   T Hotspur
  Man Utd         1          0           0
 Man City         1          1           0
T Hotspur         0          1           2
曼城Utd曼城T温泉酒店
曼联1 0 0
曼城110
T温泉0 1 2
我有一种预感,这一定有一个数据结构,但我找不到它。我尝试过使用字典和格式化打印,我尝试过缩进循环和字符串打印

我相信一定有一个非常简单的方法可以做到这一点,但我可能因为缺乏经验而错过了它。

我想这就是你想要的

这是一个简单的模块,只需计算表项所需的最大宽度,然后使用and对数据进行漂亮的打印

如果您希望左标题向右对齐,只需更改此呼叫:

 print >> out, row[0].ljust(col_paddings[0] + 1),
从第53行开始,带:

 print >> out, row[0].rjust(col_paddings[0] + 1),
我想这就是你要找的

这是一个简单的模块,只需计算表项所需的最大宽度,然后使用and对数据进行漂亮的打印

如果您希望左标题向右对齐,只需更改此呼叫:

 print >> out, row[0].ljust(col_paddings[0] + 1),
从第53行开始,带:

 print >> out, row[0].rjust(col_paddings[0] + 1),

我会尝试循环浏览列表,并使用CSV格式化程序来表示所需的数据

可以指定制表符、逗号或任何其他字符作为分隔符

否则,只需在列表中循环并在每个元素后打印“\t”


我会尝试循环浏览列表,并使用CSV格式化程序来表示所需的数据

可以指定制表符、逗号或任何其他字符作为分隔符

否则,只需在列表中循环并在每个元素后打印“\t”

一些特殊代码:

row_format ="{:>15}" * (len(teams_list) + 1)
print(row_format.format("", *teams_list))
for team, row in zip(teams_list, data):
    print(row_format.format(team, *row))
这依赖于和。

一些特殊代码:

row_format ="{:>15}" * (len(teams_list) + 1)
print(row_format.format("", *teams_list))
for team, row in zip(teams_list, data):
    print(row_format.format(team, *row))

这依赖于.

Python实际上使这变得非常容易

差不多

for i in range(10):
    print '%-12i%-12i' % (10 ** i, 20 ** i)
将有输出

1           1           
10          20          
100         400         
1000        8000        
10000       160000      
100000      3200000     
1000000     64000000    
10000000    1280000000  
100000000   25600000000
1000000000  512000000000
字符串中的%本质上是一个转义字符,它后面的字符告诉python数据应该采用何种格式。字符串外部和后面的%告诉python您打算使用前一个字符串作为格式字符串,并且应将以下数据转换为指定的格式

在本例中,我使用了两次“%-12i”。要分解每个部分:

'-' (left align)
'12' (how much space to be given to this part of the output)
'i' (we are printing an integer)

从文档中可以看出:

Python实际上使这变得非常简单

差不多

for i in range(10):
    print '%-12i%-12i' % (10 ** i, 20 ** i)
将有输出

1           1           
10          20          
100         400         
1000        8000        
10000       160000      
100000      3200000     
1000000     64000000    
10000000    1280000000  
100000000   25600000000
1000000000  512000000000
字符串中的%本质上是一个转义字符,它后面的字符告诉python数据应该采用何种格式。字符串外部和后面的%告诉python您打算使用前一个字符串作为格式字符串,并且应将以下数据转换为指定的格式

在本例中,我使用了两次“%-12i”。要分解每个部分:

'-' (left align)
'12' (how much space to be given to this part of the output)
'i' (we are printing an integer)

从文档中:

有一些用于此目的的轻量级实用python包:

1。制表

从表格导入表格
打印(表格(['Alice',24],'Bob',19]],标题=['Name','Age']))
tablate有许多选项来指定标题和表格格式

print(制表(['Alice',24],'Bob',19]],标题=['Name','Age',tablefmt='orgtbl'))
2。漂亮的桌子

从prettytable导入prettytable
t=PrettyTable(['Name','Age']))
t、 添加_行(['Alice',24])
t、 添加行(['Bob',19])
打印(t)
PrettyTable具有从csv、html和sql数据库读取数据的选项。此外,您还可以选择数据子集、对表格进行排序和更改表格样式

3。text表格

从texttable导入texttable
t=文本表()
t、 添加_行(['Name','Age',['Alice',24','Bob',19]])
打印(t.draw())
使用texttable,您可以控制水平/垂直对齐、边框样式和数据类型

4。术语表

将术语表导入为tt
字符串=tt.to_字符串(
[[“爱丽丝”,24],“鲍勃”,19],
页眉=[“姓名”,“年龄”],
style=tt.styles.ascii\u thin\u double,
#alignment=“ll”,
#填充=(0,1),
)
打印(字符串)
使用texttable,您可以控制水平/垂直对齐、边框样式和数据类型

其他选择:

  • 从字符串列表轻松地在终端/控制台应用程序中绘制表格。支持多行
  • Asciitable可以通过内置的扩展读取器类读写各种ASCII表格格式

有一些轻巧实用的python软件包可用于此目的:

1。制表

从表格导入表格
打印(表格(['Alice',24],'Bob',19]],标题=['Name','Age']))
tablate有许多选项来指定标题和表格格式

print(制表(['Alice',24],'Bob',19]],标题=['Name','Age',tablefmt='orgtbl'))
2。漂亮的桌子

从prettytable导入prettytable
t=PrettyTable(['Name','Age']))
t、 添加_行(['Alice',24])
t、 添加行(['Bob',19])
打印(t)
PrettyTable具有从csv、html和sql数据库读取数据的选项。此外,您还可以选择数据子集、对表格进行排序和更改表格样式

3。text表格

从texttable导入texttable
t=文本表()
t、 添加_行(['Name','Age',['Alice',24','Bob',19]])
打印(t.draw())
使用texttable,您可以控制水平/垂直对齐、边框样式和数据类型

4。术语表

将术语表导入为tt
字符串=tt.to_字符串(
[[“爱丽丝”
def format_matrix(header, matrix,
                  top_format, left_format, cell_format, row_delim, col_delim):
    table = [[''] + header] + [[name] + row for name, row in zip(header, matrix)]
    table_format = [['{:^{}}'] + len(header) * [top_format]] \
                 + len(matrix) * [[left_format] + len(header) * [cell_format]]
    col_widths = [max(
                      len(format.format(cell, 0))
                      for format, cell in zip(col_format, col))
                  for col_format, col in zip(zip(*table_format), zip(*table))]
    return row_delim.join(
               col_delim.join(
                   format.format(cell, width)
                   for format, cell, width in zip(row_format, row, col_widths))
               for row_format, row in zip(table_format, table))

print format_matrix(['Man Utd', 'Man City', 'T Hotspur', 'Really Long Column'],
                    [[1, 2, 1, -1], [0, 1, 0, 5], [2, 4, 2, 2], [0, 1, 0, 6]],
                    '{:^{}}', '{:<{}}', '{:>{}.3f}', '\n', ' | ')
                   | Man Utd | Man City | T Hotspur | Really Long Column
Man Utd            |   1.000 |    2.000 |     1.000 |             -1.000
Man City           |   0.000 |    1.000 |     0.000 |              5.000
T Hotspur          |   2.000 |    4.000 |     2.000 |              2.000
Really Long Column |   0.000 |    1.000 |     0.000 |              6.000
def print_table(data, cols, wide):
    '''Prints formatted data on columns of given width.'''
    n, r = divmod(len(data), cols)
    pat = '{{:{}}}'.format(wide)
    line = '\n'.join(pat * cols for _ in range(n))
    last_line = pat * r
    print(line.format(*data))
    print(last_line.format(*data[n*cols:]))

data = [str(i) for i in range(27)]
print_table(data, 6, 12)
0           1           2           3           4           5           
6           7           8           9           10          11          
12          13          14          15          16          17          
18          19          20          21          22          23          
24          25          26
def print_results_table(data, teams_list):
    str_l = max(len(t) for t in teams_list)
    print(" ".join(['{:>{length}s}'.format(t, length = str_l) for t in [" "] + teams_list]))
    for t, row in zip(teams_list, data):
        print(" ".join(['{:>{length}s}'.format(str(x), length = str_l) for x in [t] + row]))

teams_list = ["Man Utd", "Man City", "T Hotspur"]
data = [[1, 2, 1],
        [0, 1, 0],
        [2, 4, 2]]

print_results_table(data, teams_list)
            Man Utd  Man City T Hotspur
  Man Utd         1         2         1
 Man City         0         1         0
T Hotspur         2         4         2
table = [
    ["", "Man Utd", "Man City", "T Hotspur"],
    ["Man Utd", 1, 0, 0],
    ["Man City", 1, 1, 0],
    ["T Hotspur", 0, 1, 2],
]
def print_table(table):
    longest_cols = [
        (max([len(str(row[i])) for row in table]) + 3)
        for i in range(len(table[0]))
    ]
    row_format = "".join(["{:>" + str(longest_col) + "}" for longest_col in longest_cols])
    for row in table:
        print(row_format.format(*row))
>>> print_table(table)

            Man Utd   Man City   T Hotspur
  Man Utd         1          0           0
 Man City         1          1           0
T Hotspur         0          1           2
print("Titlex\tTitley\tTitlez")
for x, y, z in data:
    print(x, "\t", y, "\t", z)
#Column headers
print("", end="\t")
for team in teams_list:
    print(" ", team, end="")
print()
# rows
for team, row in enumerate(data):
    teamlabel = teams_list[team]
    while len(teamlabel) < 9:
        teamlabel = " " + teamlabel
    print(teamlabel, end="\t")
    for entry in row:
        print(entry, end="\t")
    print()
          Man Utd  Man City  T Hotspur
  Man Utd       1       2       1   
 Man City       0       1       0   
T Hotspur       2       4       2   
+--------------------------------------------+
| 4            | 3            | Hi           |
| 2            | 1            | 808890312093 |
| 5            | Hi           | Bye          |
+--------------------------------------------+
+--------------------------------------------+
| 4            | 3            | Hi           |
+--------------+--------------+--------------+
| 2            | 1            | 808890312093 |
| 5            | Hi           | Bye          |
+--------------------------------------------+
+-----------------------------------------------+
| Name                  | Email                 |
+-----------------------+-----------------------+
| Richard               | richard@fakeemail.com |
| Tasha                 | tash@fakeemail.com    |
+-----------------------------------------------+
+-----------------------+
|       | a     | b     |
+-------+-------+-------+
| x     | a + x | a + b |
| z     | a + z | z + b |
+-----------------------+
from beautifultable import BeautifulTable

table = BeautifulTable()
table.column_headers = ["", "Man Utd","Man City","T Hotspur"]
table.append_row(['Man Utd',  1,  2,  3])
table.append_row(['Man City', 7, 4,  1])
table.append_row(['T Hotspur', 3, 2,  2])
print(table)
Amplitude      :  1.438 m³/h
MAE            :  0.171 m³/h
MAPE           : 27.740 %