gpt4 book ai didi

Python 表格格式 : want to display the table with one blank element

转载 作者:行者123 更新时间:2023-12-02 15:25:52 25 4
gpt4 key购买 nike

我尝试使用 Python 的表格格式。我想通过以下方式获取我的数据:

x    1
y 2 3
z 4 5

我的代码是这样的:

from tabulate import tabulate
table = [["x", 1], ["y", 2, 3], ["z", 4, 5]]
print tabulate(table)

但是,有了这个,我得到了一个输出:

-  -
x 1
y 2
z 4
- -

这意味着它会抑制每个属性的第二个数据。有解决办法吗?

最佳答案

你可以做的最基本的形式

from tabulate import tabulate
table = [["x",1, None],["y",2,3],["z",4,5]]
print tabulate(table, tablefmt='plain')

tablefmt='plain' 根据您的示例输出抑制破折号格式。

输出

x  1
y 2 3
z 4 5

关于Python 表格格式 : want to display the table with one blank element,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30419488/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com