Python如何输出格式清晰的dict

Python在shell里面输出dict 一般有两个问题:

1.没有格式,一行就出来了。

2.unicode中文会输出u"\0x\34"之类的原始格式。

解决方法,用json提供的dumps方法:

import json

def VPrint(content):
    print json.dumps(content, encoding='utf-8', ensure_ascii=False, indent=1)

if __name__ == '__main__':
    dict_exp = {1:'a';2:'b', 3:u'中文'}
    VPrint(dict_exp) 

其中encoding要选择与终端匹配的编码方式。

你可能感兴趣的:(python,中文,格式化,输出,dict,字典,美观)