Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
549 views
in Technique[技术] by (71.8m points)

python - Why unicode string is not shown on PyCharm's console?

Environment: Windows 8 + PyCharm 5.0 + Python 2.7.9

print "123" # OK

print u"123" # Show empty line on the console?

My "File Encodings" already set to UTF-8, and I also add:

"-Dconsole.encoding=UTF-8" 

in the file "pycharm.exe.vmoptions", but still encounter the issue.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Add following line in the file "pycharm.exe.vmoptions" can fix the issue:

-Dfile.encoding=UTF-8 

It seems to be a bug from PyCharm 5.0...


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...