UnicodeDecodeError: 'gbk' codec can't decode byte 0x90 in position 158: illegal multibyte sequence
时间: 2023-11-13 15:04:33 浏览: 45
Python运行报错UnicodeDecodeError的解决方法
这个错误通常是由于编码问题引起的。在Python中,当你尝试读取一个文件时,如果文件的编码格式与你的Python解释器的默认编码格式不同,就会出现这个错误。解决这个问题的方法是在打开文件时指定正确的编码格式。例如,如果你的文件是UTF-8编码的,你可以这样打开文件:
with open('filename.html', encoding='utf-8') as f:
# do something with the file
如果你不确定文件的编码格式,可以尝试使用chardet库来自动检测文件的编码格式。你可以这样使用chardet库:
import chardet
with open('filename.html', 'rb') as f:
result = chardet.detect(f.read())
encoding = result['encoding']
with open('filename.html', encoding=encoding) as f:
# do something with the file
阅读全文