当一个py 文件里有print中文时,在终端运行时,会输出乱码
如:
1
2
3
\xe5\x85\xac\xe5\x8e\x86
或
u'\u516c\u5386'
要想正确输出,只要在开头添加一行from __future__ import print_function
:
1
2
3
4
5
6
# -*- coding: utf-8 -*-
from __future__ import print_function
print("中文正常")
print(u"中文正常")
本文网址: https://pylist.com/topic/159.html 转摘请注明来源