【发布时间】:2021-01-11 05:22:22
【问题描述】:
我试图将一个简单的列表制成一个使用tabulate() 格式化的文本文件,fancy_grid 格式是我想要的,它在控制台中打印正常,但是在写入文本文件时,我收到以下错误。删除参数tablefmt='fancy_grid' 使其编写一个简单的表,但这不是我想要的。我也尝试过使用 docx 格式,但仍然出现同样的错误
这是在 Windows 环境中。
代码
from tabulate import tabulate
l = [['{:<118}.'.format("Hassan"), 21, "LUMS"], ["Ali", 22, "FAST"], ["Ahmed", 23, "UET"]]
table = tabulate(l, headers=['Name', 'Age', 'University'], tablefmt='fancy_grid', showindex="always")
with open("C:\\Users\\John\\Desktop\\kaita.txt", "w") as outf:
outf.write(table)
os.startfile("C:\\Users\\John\\Desktop\\kaita.txt", "print")
错误
Traceback (most recent call last):
File "E:/Developement/Desktop Applications/GuiWithWx/Learn/Teach/runpython.py", line 160, in <module>
outf.write(table)
File "C:\Python\lib\encodings\cp1252.py", line 19, in encode
return codecs.charmap_encode(input,self.errors,encoding_table)[0]
UnicodeEncodeError: 'charmap' codec can't encode characters in position 0-150: character maps to <undefined>
【问题讨论】:
-
链接建议添加
.encode("utf-8") -
@antoine,非常感谢,您可以将其写为答案,以便我接受。