1

我试图将一个简单的列表制成一个使用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>
4

2 回答 2

1

请补充:.encode("utf-8")

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.encode("utf-8"))
os.startfile("C:\\Users\\John\\Desktop\\kaita.txt", "print")

信用:UnicodeEncodeError:“charmap”编解码器无法编码字符

于 2021-01-11T05:38:08.570 回答
1

我在linux下运行它。有用。

在此处输入图像描述

我认为问题不在于写入文件,tabulate而在于写入文件

您可以尝试使用utf-8文件格式保存文件:

import io
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 io.open("C:\\Users\\John\\Desktop\\kaita.txt", "w", encoding="utf-8") as outf:
    outf.write(table)

os.startfile("C:\\Users\\John\\Desktop\\kaita.txt", "print")    
于 2021-01-11T05:40:19.957 回答