pycharm 输出中文出现x*乱码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pycharm 输出中文出现x*乱码相关的知识,希望对你有一定的参考价值。
\x*为中文字符:使用decode对其进行编码,再输出即可
1 s = ‘你好‘ 2 print s 3 # output:你好 4 5 s = [‘你好‘] 6 print s 7 # output:[‘\xe4\xbd\xa0\xe5\xa5\xbd‘] 8 9 s = [‘你好‘] 10 print str(s[0]).decode(‘string_escape‘) 11 # output:你好
以上是关于pycharm 输出中文出现x*乱码的主要内容,如果未能解决你的问题,请参考以下文章