文本的編碼與解碼問題,其中很常見的一種解碼錯誤以下所示:html
問題一 UnicodeDecodeError: 'gbk' codec can't decode byte 0x93 in position 130: illegal multibyte sequence編碼
例:open(‘1.txt’,encoding=’gbk’); spa
例:open(‘1.txt’,encoding=’gb18030’); .net
例:open(‘1.txt’,encoding=’gb18030’,errors=‘ignore’); code
問題二 'gbk' codec can't decode byte 0x93 in position 5456: illegal multibyte sequencehtm
---------------------
參考:https://blog.csdn.net/shijing_0214/article/details/51971734
blog
參考: https://www.cnblogs.com/mengyu/p/6638975.htmlit