pprint模块提供了一个美观地打印Python数据结构的方式。如果是要格式化的数据结构里包含了非基本类型的数据,有可能这种数据类型不会被加载。比如数据类型是文件、网络socket、类等。本模块格式化时,尽可能保持一个对象一行表示,并且当超过允许宽度时也会自动换行表示。所有字典数据类型,都会先按键来排序,然后再进行格式化输出。
class pprint.PrettyPrinter(indent=1, width=80, depth=None, stream=None, *, compact=False)
构造一个打印实例PrettyPrinter。这个构造函数需要好几个参数来配置打印参数。可以通过参数stream来设置流输出对象,流输出对象要实现write()的文件协议。如果没有指定流输出对象,默认是输出到sys.stdout。每行递归缩进的宽度是通过indent来设置,默认设置为1。参数width是表示每行的宽度,如果超过一行的宽度就会换行输出。参数depth是表示复合对象输出的层次深度,默认是没有限制,所有层次的对象都输出。参数compact是表示换行时下一行是否输出内容,还是跳过。
例子:
#python 3.4
import pprint
stuff = [‘spam‘, ‘eggs‘, ‘lumberjack‘, ‘knights‘, ‘ni‘]
stuff.insert(0, stuff[:])
print(stuff, ‘\n‘)
pp = pprint.PrettyPrinter(indent=4)
pp.pprint(stuff)
结果输出如下:
[[‘spam‘, ‘eggs‘, ‘lumberjack‘, ‘knights‘, ‘ni‘], ‘spam‘, ‘eggs‘, ‘lumberjack‘, ‘knights‘, ‘ni‘]
[ [‘spam‘, ‘eggs‘, ‘lumberjack‘, ‘knights‘, ‘ni‘],
‘spam‘,
‘eggs‘,
‘lumberjack‘,
‘knights‘,
‘ni‘]
pprint.pformat(object, indent=1, width=80, depth=None, *, compact=False)
把object对象格式化为字符串返回。其它参数与上面的函数一样。
例子:
#python 3.4
import pprint
stuff = [‘spam‘, ‘eggs‘, ‘lumberjack‘, ‘knights‘, ‘ni‘]
stuff.insert(0, stuff[:])
str = pprint.pformat(stuff)
print(str)
结果输出如下:
[[‘spam‘, ‘eggs‘, ‘lumberjack‘, ‘knights‘, ‘ni‘],
‘spam‘,
‘eggs‘,
‘lumberjack‘,
‘knights‘,
‘ni‘]
pprint.pprint(object, stream=None, indent=1, width=80, depth=None, *, compact=False)
打印所有格式化的对象到流对象stream里,并添加新换行符。如果stream为空,就使用默认的sys.stdout。其它参数与上面函数一样。
例子:
#python 3.4
import pprint
stuff = [‘spam‘, ‘eggs‘, ‘lumberjack‘, ‘knights‘, ‘ni‘]
stuff.insert(0, stuff[:])
str = pprint.pprint(stuff)
结果输出如下:
[[‘spam‘, ‘eggs‘, ‘lumberjack‘, ‘knights‘, ‘ni‘],
‘spam‘,
‘eggs‘,
‘lumberjack‘,
‘knights‘,
‘ni‘]
pprint.isreadable(object)
判断对象object格式化表示的字符串是否可读,或者能使用eval()函数执行。如果可读的返回True。如果对象是递归的,则返回False。
例子:
#python 3.4
import pprint
stuff = [‘spam‘, ‘eggs‘, ‘lumberjack‘, ‘knights‘, ‘ni‘]
stuff.insert(0, stuff[:])
print(pprint.isreadable(stuff))
结果输出如下:
True
pprint.isrecursive(object)
判断对象object是否递归表示。
例子:
#python 3.4
import pprint
stuff = [‘spam‘, ‘eggs‘, ‘lumberjack‘, ‘knights‘, ‘ni‘]
stuff.insert(0, stuff[:])
print(pprint.isrecursive(stuff))
结果输出如下:
False
pprint.saferepr(object)
针对递归对象进行显示时提示递归字符串。
例子:
#python 3.4
import pprint
stuff = [‘spam‘, ‘eggs‘, ‘lumberjack‘, ‘knights‘, ‘ni‘]
stuff.insert(0, stuff)
print(pprint.isrecursive(stuff))
print(pprint.saferepr(stuff))
结果输出如下:
True
[<Recursion on list with id=47354104>, ‘spam‘, ‘eggs‘, ‘lumberjack‘, ‘knights‘, ‘ni‘]
PrettyPrinter类主要有下面方法:
PrettyPrinter.pformat(object)
PrettyPrinter.pprint(object)
PrettyPrinter.isreadable(object)
PrettyPrinter.isrecursive(object)
PrettyPrinter.format(object, context, maxlevels, level)
这些方法跟上面的函数使用是一样的。
蔡军生 QQ:9073204 深圳