您现在的位置是:课程教程文章

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

2023-12-18 18:27课程教程文章 人已围观

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

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

输出结果:

['\xe4\xbd\xa0\xe5\xa5\xbd', 1, 'apple']

解决方法:

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

输出结果:

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

更多Python知识请关注Python自学网

课程教程:python打印列表有中文乱码怎么解决?

上一篇:print为什么在3时变成了函数?

下一篇:没有了

站点信息

  • 文章统计篇文章