小编典典

Unicode解码错误:如何跳过无效字符

python

有什么方法可以预处理文本文件并跳过这些字符?

UnicodeDecodeError: 'utf8' codec can't decode byte 0xa1 in position 1395: invalid start byte

阅读 218

收藏
2021-01-16

共1个答案

小编典典

尝试这个:

str.decode('utf-8',errors='ignore')
2021-01-16