码迷,mamicode.com
首页 > 其他好文 > 详细

AttributeError: module 'sys' has no attribute 'setdefaultencoding'

时间:2018-05-03 22:12:22      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:attribute   style   lan   module   col   字符串   encoding   def   删掉   

import sys
reload(sys)
sys.setdefaultencoding("utf-8")

报错:

reload 未声明

 

然后

import sys
sys.setdefaultencoding("utf-8")

报错

AttributeError: module ‘sys‘ has no attribute ‘setdefaultencoding‘

经过百度发现

Python3字符串默认编码unicode, 所以sys.setdefaultencoding也不存在了。。。。。。

所以删掉就好了。

AttributeError: module 'sys' has no attribute 'setdefaultencoding'

标签:attribute   style   lan   module   col   字符串   encoding   def   删掉   

原文地址:https://www.cnblogs.com/gongzixi/p/8987535.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!