91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python的pprint怎么用

發布時間:2022-01-17 15:53:07 來源:億速云 閱讀:340 作者:iii 欄目:大數據

本篇內容介紹了“python的pprint怎么用”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

學python學到的第一個函數就是print

print("hello world")

不管是新手還是老手,都會經常用來調試代碼。但是對于稍微復雜的對象,打印出來就的時候可讀性就沒那么好了。

例如:

>>> coordinates = [
...    {
...        "name": "Location 1",
...        "gps": (29.008966, 111.573724)
...    },
...    {
...        "name": "Location 2",
...        "gps": (40.1632626, 44.2935926)
...    },
...    {
...        "name": "Location 3",
...        "gps": (29.476705, 121.869339)
...    }
... ]

>>> print(coordinates)
[{'name': 'Location 1', 'gps': (29.008966, 111.573724)}, {'name': 'Location 2', 'gps': (40.1632626, 44.2935926)}, {'name': 'Location 3', 'gps': (29.476705, 121.869339)}]
>>>

打印一個很長的列表時,全部顯示在一行,兩個屏幕都裝不下。

于是 pprint 出現了

pprint

pprint 的全稱是Pretty Printer,更美觀的 printer。在打印內容很長的對象時,它能夠以一種格式化的形式輸出。

>>> import pprint
>>> pprint.pprint(coordinates)
[{'gps': (29.008966, 111.573724), 'name': 'Location 1'},
{'gps': (40.1632626, 44.2935926), 'name': 'Location 2'},
{'gps': (29.476705, 121.869339), 'name': 'Location 3'}]
>>>

當然,你還可以自定義輸出格式

# 指定縮進和寬度
>>> pp = pprint.PrettyPrinter(indent=4, width=50)
>>> pp.pprint(coordinates)
[   {   'gps': (29.008966, 111.573724),
       'name': 'Location 1'},
   {   'gps': (40.1632626, 44.2935926),
       'name': 'Location 2'},
   {   'gps': (29.476705, 121.869339),
       'name': 'Location 3'}]

但是pprint還不是很優雅,因為打印自定義的類時,輸出的是對象的內存地址相關的一個字符串

class Person():
   def __init__(self, age):
       self.age = age

p = Person(10)

>>> print(p)
<__main__.Person object at 0x00BCEBD0>
>>> import pprint
>>> pprint.pprint(p)
<__main__.Person object at 0x00BCEBD0>

beeprint

而用beeprint可以直接打印對象里面的屬性值,省去了重寫 __str__  方法的麻煩

from beeprint import pp
pp(p)
instance(Person):
 age: 10

不同的是,print和pprint是python的內置模塊,而 beeprint 需要額外安裝。

“python的pprint怎么用”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

饶阳县| 石景山区| 临江市| 武强县| 虞城县| 玛纳斯县| 临汾市| 砀山县| 汪清县| 淮北市| 调兵山市| 天长市| 湾仔区| 淳化县| 涿鹿县| 兴业县| 永春县| 宁陕县| 临海市| 陇南市| 招远市| 正宁县| 滨海县| 高要市| 宜兰市| 建瓯市| 蓬莱市| 修文县| 贵阳市| 连平县| 乌什县| 博野县| 临汾市| 磴口县| 孝义市| 长治县| 镇沅| 苍溪县| 彭泽县| 襄樊市| 郴州市|