python默认的编码是ascii,当程序中出现非ascii编码时,python的处理常常会报这样的错,python没办法处理非ascii编码的,
此时需要自己设置python的默认编码,一般设置为utf8的编码格式。
cat myutf8.py #添加如下内容,设置编码为utf8
# encoding=utf8
import sys
reload(sys)
sys.setdefaultencoding(‘utf8‘)
python:'ascii' codec can't encode character
时间: 2024-11-01 21:11:33