我有一个 UTF-8 格式的 .txt 文件,将其读入 Python 时遇到问题。我有大量文件,转换会很麻烦。
所以如果我通过阅读文件
for line in file_obj:
...
我收到以下错误:
File "/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/encodings/ascii.py", line 26, in decode
return codecs.ascii_decode(input, self.errors)[0]
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc2 in position 291: ordinal not in range(128)
我想x.decode("utf-8")
这是行不通的,因为错误发生在该行甚至被读入之前。