您好,登錄后才能下訂單哦!
本篇內容介紹了“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 的全稱是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怎么用”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。