一、添加系统变量
在window环境变量中,添加环境变量 PYTHONIOENCODING = UTF-8。
PYTHONIOENCODING
UTF-8。
二、在文件中设置输出编码
import io import sys sys.stdout = io.TextIOWrapper(sys.stdout.buffer,encoding='utf8')