带有多个标题行的Python表

时间:2016-01-15 16:07:25

标签: python prettytable

我需要创建一个表来显示使用不同条件收集的多组数据。这就是我需要表格的样子:

        Config 1        Config 2
Test    Data 1  Data 2  Data 1  Data 2
abc     123     123     123     123

因此系统设置为配置1,然后收集了两组数据。使用配置2重置系统,然后收集相同的数据集。

我一直在尝试使用prettytable,但没有找到任何指定如何制作适用于以下多个列的第二个标头的内容。

1 个答案:

答案 0 :(得分:2)

您可以使用最大列宽编写一个函数来对齐所有数据条目,如下所示:

def write_cols(data):
    col_spacer = "   "      # added between columns
    widths = [0] * len(data[0])

    # Calculate the widest entry for each column
    for row in data:
        widths[:] = [max(widths[index], len(str(col))) for index, col in enumerate(row)]

    return [col_spacer.join("{:<{width}}".format(col, width=widths[index]) for index, col in enumerate(row)) for row in data]

data = [['', 'Config 1', '', 'Config 2', ''], ["Test", "Data 1", "Data 2", "Data 1", "Data 2"], ["abc", "123", "123", "123", "123"]]

for row in write_cols(data):
    print row

这将显示您的数据如下:

       Config 1            Config 2         
Test   Data 1     Data 2   Data 1     Data 2
abc    123        123      123        123