python打印列表有中文乱码怎么解决?

定义列表并直接输出,结果输出结果中文是乱码:

e=['你好',1,'apple']
print e

输出结果:

['xe4xbdxa0xe5xa5xbd', 1, 'apple']

解决方法:

e=['你好',1,'apple']
print json.dumps(e,encoding='utf-8',ensure_ascii=False)

输出结果:

["你好", 1, "apple"]

更多Python知识请关注云海天python教程网

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

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python打印列表有中文乱码怎么解决?