本文介绍了为什么 unicode 字符串没有显示在 PyCharm 的控制台上?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
环境:Windows 8 + PyCharm 5.0 + Python 2.7.9
Environment: Windows 8 + PyCharm 5.0 + Python 2.7.9
print "123" # OK
print u"123" # Show empty line on the console?
我的文件编码"已经设置为 UTF-8,我也添加:
My "File Encodings" already set to UTF-8, and I alsoadd:
"-Dconsole.encoding=UTF-8"
在文件pycharm.exe.vmoptions"中,但仍然遇到问题.
in the file "pycharm.exe.vmoptions", but still encounter the issue.
推荐答案
在文件pycharm.exe.vmoptions"中添加以下行可以解决问题:
Add following line in the file "pycharm.exe.vmoptions" can fix the issue:
-Dfile.encoding=UTF-8
这似乎是 PyCharm 5.0 的一个错误...
It seems to be a bug from PyCharm 5.0...
这篇关于为什么 unicode 字符串没有显示在 PyCharm 的控制台上?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!