Python控制台输出乱码问题怎么解决
Python控制台输出乱码问题怎么解决
乱码原因:
源码文件的编码格式为utf-8,但是window的本地默认编码是gbk,所以在控制台直接打印utf-8的字符串当然是乱码了!
解决方法:
1、print( mystr.decode('utf-8').encode('gbk') )
2、比较通用的方法:
import sys type = sys.getfilesystemencoding() print( mystr.decode('utf-8').encode(type) )
推荐学习《Python教程》。
来源:PY学习网:原文地址:https://www.py.cn/article.html