Python的字符集处理实在蛋疼,目前使用UTF-8居多,然后默认使用的字符集是ascii,所以我们需要改成utf-8
查看目前系统字符集
import sys
print sys.getdefaultencoding()
执行:
[root@lee ~]# python a.py
ascii
修改成utf-8
import sys
sys.setdefaultencoding('utf-8')
print sys.getdefaultencoding()
执行:
[root@lee ~]# python a.py
Traceback (most recent call last):
File "a.py", line 4, in <module>
sys.setdefaultencoding('utf-8')
AttributeError: 'module' object has no attribute 'setdefaultencoding'
提示:AttributeError: 'module' object has no attribute 'setdefaultencoding'?
后来经过查找相关资料,才发现早期版本可以直接sys.setdefaultencoding('utf-8'),新版本需要先reload一下
import sys
reload(sys)
sys.setdefaultencoding('utf-8')
print sys.getdefaultencoding()
执行
[root@lee ~]# python a.py
utf-8
到此这篇关于python错误:AttributeError: 'module' object has no attribute 'setdefaultencoding'问题的解决方法就介绍到这了。抱抱你,大姑娘,这些年年走过来有多不容易,你要坚强要加油地走下去,人难得世间走一遭想要的就努力争取想做的就大胆尝试,愿你此生不乏追逐的勇气与希望,愿你今世爱你所爱恨你所恨,总之,勇气,希望,好奇,敬畏,一生随心所欲!更多相关python错误:AttributeError: 'module' object has no attribute 'setdefaultencoding'问题的解决方法内容请查看相关栏目,小编编辑不易,再次感谢大家的支持!