Python中的pprint打印模块

作者:sgzqc 时间:2023-04-22 12:11:18 

1. 引言

pprint的英文全称Data pretty printer,顾名思义就是让显示结果更加直观漂亮。

print()pprint()都是python的打印模块,功能基本一样,唯一的区别就是pprint()模块打印出来的数据结构更加完整,每行为一个数据结构,更加方便阅读打印输出结果。特别是对于特别长的数据打印,print()输出结果都在一行,不方便查看,而pprint()采用分行打印输出,所以对于数据结构比较复杂、数据长度较长的数据,适合采用pprint()打印方式。

在介绍完上述理论知识后,我们不妨来举个栗子吧!

2. 使用背景

我们来看一个打印嵌套字典的例子,如下所示:

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发挥作用的地方。

3. 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循环实现同样的功能。

4. 设定输出宽度

在了解了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}}}

5. 设定输出缩进

我们以下面这个字典为例来讲解缩进参数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}}

6. 总结

文章重点介绍了Python中的pprint模块,使用该模块可以提升我们减少我们编写代码的行数同时增加我们复杂数据结构输出的可读性。

来源:https://blog.51cto.com/u_15506603/5268487

标签:Python,pprint,打印,模块
0
投稿

猜你喜欢

  • 百度百科中的asp词条:什么是asp

    2008-10-11 14:38:00
  • ElementUI 的 Tree 组件的基本使用实战教程

    2024-04-26 17:40:46
  • Oracle merge合并更新函数实例详解

    2023-07-23 02:45:02
  • python基本语法练习实例

    2021-02-25 06:50:07
  • python time.sleep()是睡眠线程还是进程

    2022-04-09 17:33:16
  • python 判断linux进程,并杀死进程的实现方法

    2022-06-24 22:31:54
  • Vue.js框架实现购物车功能

    2024-04-30 10:46:59
  • python广度优先搜索得到两点间最短路径

    2023-09-05 02:06:24
  • 使用Python制作一盏 3D 花灯喜迎元宵佳节

    2021-08-15 06:35:43
  • Mysql的DQL查询操作全面分析讲解

    2024-01-18 02:07:27
  • Go实现MD5加密的三种方法小结

    2024-02-08 03:47:37
  • vue如何截取字符串

    2024-04-30 10:21:15
  • 解决Navicat for Mysql连接报错1251的问题(连接失败)

    2024-01-27 04:29:52
  • Go语言学习之操作MYSQL实现CRUD

    2024-01-21 15:33:14
  • JupyterNotebook设置Python环境的方法步骤

    2023-01-15 12:22:14
  • python实现Nao机器人的单目测距

    2021-04-09 16:37:10
  • python 网络爬虫初级实现代码

    2021-10-02 12:24:13
  • PHP中quotemeta()函数的用法讲解

    2023-06-08 04:04:24
  • python中文编码问题小结

    2022-12-22 23:14:14
  • python3实现无权最短路径的方法

    2023-07-11 23:26:40
  • asp之家 网络编程 m.aspxhome.com