解决Requests中文乱码【有用】,读取htm文件 读取txt文件报错:UnicodeDecodeError: 'utf-8' codec can't decode byte 0xc8 in position 0

时间:2022-05-07 10:01:12

打开这个网址https://blog.csdn.net/chaowanghn/article/details/54889835

python在open读取txt文件时,出现UnicodeDecodeError: 'utf-8' codec can't decode byte 0xc8 in position 0: invalid continuation byte报错

解决办法有二:

①把编码方式utf-8 修改为gb18030

②把原来的txt文件重新打开另存为的时候,把编码方式修改为utf-8,然后代码的encoding=‘utf-8’保持不变即可

原文:https://blog.csdn.net/xxceciline/article/details/80405129