Python报错 UnicodeDecodeError: 'utf8' codec can't decode byte 0xb7 in position 34: invalid

1.错误信息:UnicodeDecodeError: ‘utf8’ codec can’t decode byte 0xb7 in position 34: invalid
2.错误信息:UnicodeDecodeError: ‘utf8’ codec can’t decode byte 0xb9 in position 91: invalid

上面两种报错新信息都是因为这个代码 codecs.utf_8_decode(input, errors, True) 导致的错误。机器无法转换utf-8格式,因此报错。
解决方案如下:下面的示例代码中input_str 变量记录命令行接收到的字串

save_str = (input_str.decode('gb2312')).encode('utf-8')

大部分报错通过input_str.decode('gb2312')就可以解决,如果还不能解决,就通过(input_str.decode('gb2312')).encode('utf-8')

你可能感兴趣的:(报错解决,python,bug)