python中文乱码问题

时间:2022-01-14 06:50:29

在学习python的时候,当我要print中文的时候,会出现以下提示:

py = '你好,世界!'
print py

File "n2.py", line 1

SyntaxError: Non-ASCII character '\xe4' in file n2.py on line 1, but no encoding declared; see http://python.org/dev/pep
s/pep-0263/ for details

提示Non-ASCII character 错误。

经查询网络,需要添加以下代码:

#-*-coding:utf-8-*-
py = '你好,世界!'
print py

浣犲ソ锛屼笘鐣岋紒

这次没有提示错误,但是显示的是乱码。

经qq群朋友提示,需要在中文面前加上'u'即可。

代码:

#-*-coding:utf-8-*-
py = u'你好,世界!'
print py

你好,世界!

这下便能正确显示出中文了。

python版本:2.7.12

系统版本:windows10 1611