首頁 > 軟體

Python中的pprint列印模組

2022-05-24 18:02:32

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​​模組,使用該模組可以提升我們減少我們編寫程式碼的行數同時增加我們複雜資料結構輸出的可讀性。

到此這篇關於Python中的pprint列印模組的文章就介紹到這了,更多相關 pprint模組內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com