一招避免python终端 print 中文显示乱码
当一个py 文件里有print中文时,在终端运行时,会输出乱码
如
xe5x85xacxe5x8ex86 或 u'u516cu5386'
要想正确输出,只要在开头添加一行from __future__ import print_function:
# -*- coding: utf-8 -*-from __future__ import print_function print("中文正常") print(u"中文正常")
来源:PY学习网:原文地址:https://www.py.cn/article.html