Python3出现AttributeError的错误
参考链接:https://blog.csdn.net/qq236237606/article/details/105347236/
python3报错AttributeError: module ‘sys’ has no attribute ‘setdefaultencoding’
Python 3 系统默认使用的就是utf-8编码,
就不需要sys.setdefaultencoding(“utf-8”)这段代码,
而且Python 3 的 sys 库里面已经没有 setdefaultencoding() 函数了
Python3出现AttributeError的错误
https://fulequn.github.io/2020/10/Article202010173/