python 输出中文

#coding指明的编码以及保存的编码一样,一般IDE能自动根据 #Coding保存文件

某个字典中有中文,我输出字典,发现无法得到中文
如:[1,/u3415/u6745]

所以以后尽量别着急咯

好像真没办法,
假若输出dict[1]
会直接得到 “中文”

假若是单独的字符串很好处理
直接对其进行 utf-8转码

http://3个w.thinksaas.cn/topics/0/349/349602.html
这个里面写得挺好的

dict = {“asdf”:”我们的python学习”}
print dict {‘asdf’: ‘xe6x88x91xe4xbbxacxe7x9ax84pythonxe5xadxa6xe4xb9xa0’} 在输出处理好的数据结构的时候很不方便,需要使用以下方法进行输出:
import json
print json.dumps(dict, encoding=”UTF-8”, ensure_ascii=False) {“asdf”:”我们的python学习”} 注意上面的两个参数

你可能感兴趣的:(python)