如图,pprint在查看的时候比较方便阅读
相对比print 默认全部打印在一行
('test', [1, 2, 3, 'test', 4, 5], 'This is a string!', {'age': 23, 'gender': 'F'})
pprint会以结构的形式展示
('test',
[1, 2, 3, 'test', 4, 5],
'This is a string!',
{'age': 23, 'gender': 'F'})
如图,pprint在查看的时候比较方便阅读
相对比print 默认全部打印在一行
('test', [1, 2, 3, 'test', 4, 5], 'This is a string!', {'age': 23, 'gender': 'F'})
pprint会以结构的形式展示
('test',
[1, 2, 3, 'test', 4, 5],
'This is a string!',
{'age': 23, 'gender': 'F'})