pprint打印模块能做什么,有哪些应用
Admin 2022-08-19 群英技术资讯 291 次浏览
pprint
的英文全称Data pretty printer
,顾名思义就是让显示结果更加直观漂亮。
print()
和pprint()
都是python的打印模块,功能基本一样,唯一的区别就是pprint()
模块打印出来的数据结构更加完整,每行为一个数据结构,更加方便阅读打印输出结果。特别是对于特别长的数据打印,print()
输出结果都在一行,不方便查看,而pprint()
采用分行打印输出,所以对于数据结构比较复杂、数据长度较长的数据,适合采用pprint()打印方式。
在介绍完上述理论知识后,我们不妨来举个栗子吧!
我们来看一个打印嵌套字典的例子,如下所示:
d = { "apple": {"juice":4, "pie":5}, "orange": {"juice":6, "cake":7}, "pear": {"cake":8, "pie":9} }
如果使用默认的print
来进行打印,得到输出如下:
{'apple': {'juice': 4, 'pie': 5}, 'orange': {'juice': 6, 'cake': 7}, 'pear': {'cake': 8, 'pie': 9}}
上述输出都堆在一行,显得很混乱,缺少可读性。为了让输出显得有条理,我曾经写过一个for循环来打印如下内容:
for k,v in d.items(): print(k, "->", v)
此时的输出如下:
apple -> {'juice': 4, 'pie': 5}
orange -> {'juice': 6, 'cake': 7}
pear -> {'cake': 8, 'pie': 9}
上述代码很容易让人理解,但我必须浪费宝贵的时间来输入for循环。上述常见就是Python的pprint
发挥作用的地方。
有了上述的简短介绍,我们这里直接使用pprint
来打印上述字典,样例代码如下:
from pprint import pprint pprint(d)
输出如下:
{'apple': {'juice': 4, 'pie': 5},
'orange': {'cake': 7, 'juice': 6},
'pear': {'cake': 8, 'pie': 9}}
需要注意的是,pprint
以人类可读的格式很好地格式化了嵌套字典,而不需要像前面的示例中那样来编写for循环实现同样的功能。
在了解了pprint
的入门示例后,我们来看看该函数的其他高级用法。这里我们不妨以一个三层嵌套字典为例来进行讲解,示例如下:
d = { "apple": { "juice": {1:2, 3:4, 5:6}, "pie": {1:3, 2:4, 5:7}, }, "orange": { "juice": {1:5, 2:3, 5:6}, "cake": {5:4, 3:2, 6:5}, }, "pear": { "cake": {1:6, 6:1, 7:8}, "pie": {3:5, 5:3, 8:7}, } }
其实,在pprint
函数中有一个参数width
可以控制每行输出的宽度,直接使用pprint
输出如下:
pprint(d) # output {'apple': {'juice': {1: 2, 3: 4, 5: 6}, 'pie': {1: 3, 2: 4, 5: 7}}, 'orange': {'cake': {3: 2, 5: 4, 6: 5}, 'juice': {1: 5, 2: 3, 5:6}}, 'pear': {'cake': {1: 6, 6: 1, 7: 8}, 'pie': {3: 5, 5: 3, 8: 7}}}
将宽度设置为50,此时输出如下:
pprint(d, width=50) # output: {'apple': {'juice': {1: 2, 3: 4, 5: 6}, 'pie': {1: 3, 2: 4, 5: 7}}, 'orange': {'cake': {3: 2, 5: 4, 6: 5}, 'juice': {1: 5, 2: 3, 5: 6}}, 'pear': {'cake': {1: 6, 6: 1, 7: 8}, 'pie': {3: 5, 5: 3, 8: 7}}}
将宽度设置为30,此时输出如下:
pprint(d, width=30) # output {'apple': {'juice': {1: 2, 3: 4, 5: 6}, 'pie': {1: 3, 2: 4, 5: 7}}, 'orange': {'cake': {3: 2, 5: 4, 6: 5}, 'juice': {1: 5, 2: 3, 5: 6}}, 'pear': {'cake': {1: 6, 6: 1, 7: 8}, 'pie': {3: 5, 5: 3, 8: 7}}}
我们以下面这个字典为例来讲解缩进参数indent
的作用:
d = { "apple": {"juice":4, "pie":5}, "orange": {"juice":6, "cake":7}, "pear": {"cake":8, "pie":9} }
默认不设置缩进的输出如下:
pprint(d) # output {'apple': {'juice': 4, 'pie': 5}, 'orange': {'cake': 7, 'juice': 6}, 'pear': {'cake': 8, 'pie': 9}}
将缩进设置为4时的输出如下:
pprint(d, indent=4) # output { 'apple': {'juice': 4, 'pie': 5}, 'orange': {'cake': 7, 'juice': 6}, 'pear': {'cake': 8, 'pie': 9}}
将缩进设置为8时的输出如下:
pprint(d, indent=8) # output { 'apple': {'juice': 4, 'pie': 5}, 'orange': {'cake': 7, 'juice': 6}, 'pear': {'cake': 8, 'pie': 9}}
文章重点介绍了Python中的pprint
模块,使用该模块可以提升我们减少我们编写代码的行数同时增加我们复杂数据结构输出的可读性。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
这篇文章主要为大家介绍了Python入门类和对象,具有一定的参考价值,感兴趣的小伙伴们可以参考一下,希望能够给你带来帮助
Python中对象方法的定义很怪异,第一个参数一般都命名为self(相当于其它语言的this),用于传递对象本身,而在调用的时候则不必显式传递,
这篇文章主要给大家分享python做三维图可视化的内容,这是学习tensorflow框架中遇到的知识,下文会使用到的定义函数选用的是将x和y封装,方便tensorflow求导,下面我们就来具体一些实现代码以及要注意的问题。
python中要想处理excel,必须用到第三方模块xlrd,所以windows 我安装方法是cmd中命令:E: ANZHUANG Python Scripts>easy_install xlrd
这篇文章主要为大家介绍了R语言条形图及分布密度图代码总结,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008