如何解决python中UnicodeDecodeError: 'utf-8' codec can't decode byte 0xxx in position xxx: invalid continuation byte问题


出现类似问题,是这个字节超出了utf-8的表示范围,出现了解码错误

解决方案:设置encoding = 'ISO-8859-1'

比如:

with open('./xxx.txt',encoding='ISO-8859-1') as f:
    print(f.read())

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM