python出现关于编码的错误-解决方案
程序员文章站
2022-03-03 15:54:24
...
报错:
UnicodeDecodeError: ‘gbk’ codec can’t decode byte 0x9d in position 1270: illegal multibyte sequence
使用python的时候经常会遇到文本的编码与解码问题,其中很常见的一种解码错误如题目所示,下面介绍该错误的解决方法,将‘gbk’换成‘utf-8’也适用。
(1)、首先在打开文本的时候,设置其编码格式,如:open(‘1.txt’,encoding=’gbk’);
(2)、若(1)不能解决,可能是文本中出现的一些特殊符号超出了gbk的编码范围,可以选择编码范围更广的‘gb18030’,如:open(‘1.txt’,encoding=’gb18030’);
(3)、若(2)仍不能解决,说明文中出现了连‘gb18030’也无法编码的字符,可以使用‘ignore’属性进行忽略,如:open(‘1.txt’,encoding=’gb18030’,errors=‘ignore’);
(4)、还有一种常见解决方法为open(‘1.txt’).read().decode(‘gb18030’,’ignore’)
原文链接:https://blog.csdn.net/shijing_0214/article/details/51971734
推荐阅读
-
卸载或安装Git出现Invalid drive错误的解决方案【简记】
-
mysql遇到load data导入文件数据出现1290错误的解决方案
-
pandas筛选某列出现编码错误的解决方法
-
经常出现在python中的错误和异常处理
-
Python程序中使用SQLAlchemy时出现乱码的解决方案
-
关于Apache默认编码错误 导致网站乱码的解决方案
-
Python中出现IndentationError:unindent does not match any outer indentation level错误的解决方法
-
命令行调用python出现编码错误:UnicodeDecodeError: ‘gbk‘ codec can‘t decode byte 0x9a in position 140 完美解决!
-
python中通过pip安装库文件时出现“EnvironmentError: [WinError 5] 拒绝访问”的问题及解决方案
-
ios设备在运行时出现 ”A valid provisioning profile for this executable was not found“错误的解决方案