python错误:AttributeError: 'module' object has no attribute 'setdefaultencoding'问题的解决方法
Python的字符集处理实在蛋疼,目前使用UTF-8居多,然后默认使用的字符集是ascii,所以我们需要改成utf-8
查看目前系统字符集
importsys printsys.getdefaultencoding()
执行:
[root@lee~]#pythona.py ascii
修改成utf-8
importsys
sys.setdefaultencoding('utf-8')
printsys.getdefaultencoding()
执行:
[root@lee~]#pythona.py
Traceback(mostrecentcalllast):
File"a.py",line4,in<module>
sys.setdefaultencoding('utf-8')
AttributeError:'module'objecthasnoattribute'setdefaultencoding'
提示:AttributeError:'module'objecthasnoattribute'setdefaultencoding'?
后来经过查找相关资料,才发现早期版本可以直接sys.setdefaultencoding('utf-8'),新版本需要先reload一下
importsys
reload(sys)
sys.setdefaultencoding('utf-8')
printsys.getdefaultencoding()
执行
[root@lee~]#pythona.py utf-8
热门推荐
10 圣诞祝福语简短小学
11 祖国七十华诞简短祝福语
12 老师送的祝福语简短
13 生日祝福语大全女生简短
14 祝女性生日祝福语简短
15 牛年女神节祝福语简短
16 情人表白祝福语简短大气
17 老公开业祝福语简短
18 官宣新年祝福语简短