UnicodeDecodeError: 'gb2312' codec can't decode byte 0x88 in position 549: illegal multibyte sequence
时间: 2023-10-22 18:28:20 浏览: 93
字符串乱码解决gb2312
4星 · 用户满意度95%
这个错误是因为使用了错误的编码方式导致的。UnicodeDecodeError: 'gb2312' codec can't decode byte 0x88 in position 4: illegal multibyte sequence 错误是由于在解码gb2312编码时遇到了非法的多字节序列,而UnicodeDecodeError: ‘gbk’ codec can’t decode byte 0xa1 in position 164: illegal multibyte sequence 错误是在解码gbk编码时遇到了非法的多字节序列。此外,UnicodeDecodeError: ‘gb2312’ codec can’t decode byte 0x88 in position 4: illegal multibyte sequence 这个错误是因为在使用csv库读取文件时,指定了错误的编码方式(GB2312),导致无法正确解码其中的字节。要解决这个问题,你需要使用正确的编码方式来读取文件。你可以尝试使用utf-8编码方式来替代GB2312编码方式来读取文件。例如,可以使用`open("txt1.txt",'r', encoding='utf-8')`来读取文件,然后将其写入CSV文件时,也需要使用utf-8编码方式。这样可以确保文件的编码方式与你的代码中指定的编码方式一致,从而避免UnicodeDecodeError错误的发生。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *3* [ UnicodeDecodeError: ‘gb2312‘ codec can‘t decode byte 0x88 in position 4: illegal multibyte seque](https://blog.csdn.net/weixin_44007816/article/details/123631031)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
- *2* [pyquery报错:UnicodeDecodeError: ‘gbk’ codec can’t decode byte](https://download.csdn.net/download/weixin_38665944/13751270)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文