python中reload(sys)作用

2020-12-13 01:33

阅读:357

标签:需要   not   encoding   can   编码格式   nal   python   自己   utf8   

python在安装时,默认的编码是ascii,当程序中出现非ascii编码时,python的处理常常会报错UnicodeDecodeError: ‘ascii‘ codec can‘t decode byte 0x?? in position 1: ordinal not in range(128),python没办法处理非ascii编码的,此时需要自己设置python的默认编码,一般设置为utf8的编码格式。

在程序中加入以下代码:即可将编码设置为utf8
import sys
reload(sys)
sys.setdefaultencoding(‘utf8‘)

python中reload(sys)作用

标签:需要   not   encoding   can   编码格式   nal   python   自己   utf8   

原文地址:https://www.cnblogs.com/longsongpong/p/11002290.html


评论


亲,登录后才可以留言!