本帖最后由 不二晨 于 2018-12-24 14:41 编辑
pprint模块:打印出任何python数据结构类和方法
indent --- 缩进,width --- 一行最大宽度,
depth --- 打印的深度,这个主要是针对一些可递归的对象,如果超出指定depth,其余的用"..."代替。
eg: a=[1,2,[3,4,],5] a的深度就是2; b=[1,2,[3,4,[5,6]],7,8] b的深度就是3
pprint.pformat((object,indent=1,width=80, depth=None)
#返回格式化的对象字符串
pprint.pprint(object,stream=None,indent=1, width=80, depth=None)
#输出格式的对象字符串到指定的stream,最后以换行符结束
pprint.isreadable(object)
#判断对象object的字符串对象是否可读
pprint.isrecursive(object)
#判断对象是否需要递归的表示
pprint.saferepr(object)
#返回一个对象字符串,对象中的子对象如果是可递归的,都被替换成<Recursionontypename withid=number>.这种形式
---------------------
【转载】仅作分享,侵删
原文:https://blog.csdn.net/qq_24726509/article/details/83828814
|
|