gpt4 book ai didi

python - 在 python 中的输出文件中编写 prettytable

转载 作者:太空宇宙 更新时间:2023-11-04 04:58:03 24 4
gpt4 key购买 nike

我正在解析一个文本文件并将我需要的信息提取到一个漂亮的表中。但是,我无法将表格写成一个表格,它输出为每个项目的单个表格。

我的输出表格的代码:

f = open("out2.txt", "w")
for item in table:
f.write("%s\n" % item)

f.write("There are %(count)d errors found" %{"count": count})

我的输出如下:

enter image description here

我怎样才能把表格写成一个连续的表格?

最佳答案

f.write(table.get_string()) 适合你吗?不是遍历表格并写入每个项目,而是直接写入表格本身?

像这样,替换循环:

f = open('out2.txt','wb')
f.write(table.get_string())
f.write('There are %(count)d errors found' % {'count': count})

关于python - 在 python 中的输出文件中编写 prettytable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46551883/

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