python reload(sys)找不到,name 'reload' is not defined和Python3异常-AttributeError: module 'sys
Posted 疯子加天才
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python reload(sys)找不到,name 'reload' is not defined和Python3异常-AttributeError: module 'sys相关的知识,希望对你有一定的参考价值。
基于python3.6.1版本,在一个.py文件中,加入这3行:
import requests, re, sys
reload(sys)
sys.setdefaultencoding("utf-8")
出现这样的错误:
sys.setdefaultencoding("utf-8")
AttributeError: module ‘sys‘ has no attribute ‘setdefaultencoding‘
原因分析:
Python3字符串默认编码unicode, 所以sys.setdefaultencoding也不存在了
解决:
去掉,sys.setdefaultencoding
---------------------
作者:琦彦
来源:CSDN
原文:https://blog.csdn.net/fly910905/article/details/74922378
版权声明:本文为博主原创文章,转载请附上博文链接!
以上是关于python reload(sys)找不到,name 'reload' is not defined和Python3异常-AttributeError: module 'sys的主要内容,如果未能解决你的问题,请参考以下文章
python3 中的reload(sys)和sys.setdefaultencoding('utf-8')