UnicodeDecodeError: 'gbk' codec can't decode byte 0x90 in position 44: illegal multibyte sequence
时间: 2023-11-27 12:47:45 浏览: 52
关于GBK和Unicode字符集转换乱码问题
3星 · 编辑精心推荐
这个错误通常是由于编码问题引起的。在Python中,当你尝试使用不同编码的文本时,就会出现这个错误。解决这个问题的方法是使用正确的编码打开文件。你可以尝试使用UTF-8编码打开文件,例如:
```python
with open('file.html', 'r', encoding='utf-8') as f:
# do something with the file
```
如果你不确定文件的编码方式,可以使用chardet库来自动检测文件的编码方式,例如:
```python
import chardet
with open('file.html', 'rb') as f:
result = chardet.detect(f.read())
encoding = result['encoding']
with open('file.html', 'r', encoding=encoding) as f:
# do something with the file
```
阅读全文