'gbk' codec can't decode byte 0x8c in position 8: illegal multibyte sequence

python读取txt文件的时候出现下面错误

这是因为我们的txt文件里面的内容编码格式不是'gbk',我们需要打开文件的时候设置它的编码格式



解决办法:

fr = open(filePath, 'r+')

改为

fr = open(filePath, 'r+',encoding='utf-8')

你可能感兴趣的:('gbk' codec can't decode byte 0x8c in position 8: illegal multibyte sequence)