一招避免python终端print中文显示乱码
当一个py 文件里有print中文时,在终端运行时,会输出乱码
如
xe5x85xacxe5x8ex86或
u'u516cu5386'
要想正确输出,只要在开头添加一行from __future__ import print_function:
# -*- coding: utf-8 -*-from __future__ import print_functionprint("中文正常")
print(u"中文正常")
以上是 一招避免python终端print中文显示乱码 的全部内容, 来源链接: utcz.com/z/525737.html