gpt4 book ai didi

python - 无法使用 readlines() 方法从文本文件中读取

转载 作者:太空宇宙 更新时间:2023-11-04 04:12:54 25 4
gpt4 key购买 nike

我曾经能够使用 python 3 对纯文本文件执行文件 io 操作,但是几天前,每当我尝试对纯文本文件使用 readlines() 方法时遇到错误.

File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/encodings/ascii.py", line 26, in decode return codecs.ascii_decode(input, self.errors)[0] UnicodeDecodeError: 'ascii' codec can't decode byte 0xef in position 0: ordinal not in range(128)

每当我尝试使用 readlines() 方法时,我都会收到上面的错误消息,之前它按预期工作。

最佳答案

打开文件时是否指定编码?

with open('file', 'r', encoding='utf-8') as f:
...

关于python - 无法使用 readlines() 方法从文本文件中读取,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56023521/

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