Python3中出现UnicodeEncodeError: 'ascii' codec can't encode characters in ordinal not in ra

Posted 梧桐树

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python3中出现UnicodeEncodeError: 'ascii' codec can't encode characters in ordinal not in ra相关的知识,希望对你有一定的参考价值。

添加代码

import sys
import codecs
sys.stdout = codecs.getwriter("utf-8")(sys.stdout.detach())

 

以上是关于Python3中出现UnicodeEncodeError: 'ascii' codec can't encode characters in ordinal not in ra的主要内容,如果未能解决你的问题,请参考以下文章

python3中使用python2中cmp函数出现错误

Python3列表中获取相同元素出现位置的下标

Python3基础 list count 查询指定元素在列表中出现的次数

Python3基础 list count 查询指定元素在列表中出现了多少次

Python3在指定路径下递归定位文件中出现的字符串

Python3基础 列表方法count 查询指定元素在列表中出现了多少次