python中文显示不正常解决方案

一.概要

在代码文件中定义中文时,无法正常打印显示。

import json
tinyDict = {
    'name': "a阿三", 'as': "nan"}
print tinyDict.keys()
print tinyDict.values()

输出结果:

['as', 'name']
['nan', 'a\xe9\x98\xbf\xe4\xb8\x89']

二.解决中文不显示的方法:

引入json,进行格式化转换后在进行输出。
语法如下:

import json
tinyDict = {
    'name': "a阿三", 'as': "nan"}
print tinyDict.keys()
result = json.dumps(tinyDict.values(), encoding='utf-8', ensure_ascii=False)
print result

输出结果:

['as', 'name']
["nan", "a阿三"]  

你可能感兴趣的:(python,python)