pythoncommand乱码怎么解决

python

python command乱码怎么解决?具体方法如下:

相关推荐:《Python教程》

先引入import sys

再加一句:type=sys.getfilesystemencoding()

然后在输出乱码的数据的后面加上“.decode('utf-8').encode(type)”。

比如输入“ss”乱码。

就写成print ss.decode('utf-8').encode(type)即可。

以上是 pythoncommand乱码怎么解决 的全部内容, 来源链接: utcz.com/z/522227.html

回到顶部