UnicodeDecodeError,无效的连续字节
o = "a test of \xe9 char" #I want this to remain a string as this is what I am receivingv = o.decode("utf-8")
Traceback (most recent call last): File "<stdin>", line 1, in <module> File "C:\Python27\lib\encodings\utf_8.py", line 16, in decode return codecs.utf_8_decode(input, errors, True) UnicodeDecodeError: 'utf8' codec can't decode byte 0xe9 in position 10: invalid continuation byte
翻阅古今
相关分类