编程语言
首页 > 编程语言> > Python标准库—pprint模块

Python标准库—pprint模块

作者:互联网

pprint

pprint模块提供了一种“漂亮打印”任意Python数据结构的功能(美化输出),该形式可用作解释器的输入。

class pprint.PrettyPrinter(indent=1, width=80, depth=None, stream=None, *, compact=False)

>>> import pprint
>>> info = {"name":"lzzwwen","gender":"male","age":"20","phone":["110","120","119"]}
>>> pp = pprint.PrettyPrinter(indent=4)
>>> pp.pprint(info)
{   'age': '20',
    'gender': 'male',
    'name': 'lzzwwen',
    'phone': ['110', '120', '119']}

常用函数

标签:None,object,False,Python,pprint,depth,模块,indent
来源: https://blog.csdn.net/L_zzwwen/article/details/100071113