Python输出不了中文怎么解决

在文件头加上#encoding:utf-8即可。

相关推荐:《Python教程》

# encoding: utf-8
print 'helloworld'
print u"学习"
print (unicode("学习", encoding="utf-8"))

shell输出: 

helloworld
学习
学习

还可以用#-*- coding: UTF-8 -*- 来指定。

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » Python输出不了中文怎么解决