1. 程式人生 > >AttributeError: module 'sys' has no attribute 'setdefaultencoding'

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

att color mod ttr reload 聲明 python3 百度 str

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'