日韩久久久精品,亚洲精品久久久久久久久久久,亚洲欧美一区二区三区国产精品 ,一区二区福利

Python中使用pprint函數(shù)進行格式化輸出的教程

系統(tǒng) 2142 0

pprint ?C 美觀打印

作用:美觀打印數(shù)據(jù)結構

pprint 包含一個“美觀打印機”,用于生成數(shù)據(jù)結構的一個美觀視圖。格式化工具會生成數(shù)據(jù)結構的一些表示,不僅可以由解釋器正確地解析,而且便于人類閱讀。輸出盡可能放在一行上,分解為多行時則需要縮進。

以下實例用用到的data包含一下數(shù)據(jù)

            
data = [(1,{'a':'A','b':'B','c':'C','d':'D'}),

    (2,{'e':'E','f':'F','g':'G','h':'H',

      'i':'I','j':'J','k':'K','l':'L'

      }),

    ]


          

1、? 打印

要使用這個模塊,最簡單的方法就是利用pprint()函數(shù)

            
from pprint import pprint
print 'PRINT:'
print data
print 
print 'PPRINT:'
pprint(data)


          

運行結果:
?

            
PRINT:
[(1, {'a': 'A', 'c': 'C', 'b': 'B', 'd': 'D'}), (2, {'e': 'E', 'g': 'G', 'f': 'F', 'i': 'I', 'h': 'H', 'k': 'K', 'j': 'J', 'l': 'L'})]
PPRINT:
[(1, {'a': 'A', 'b': 'B', 'c': 'C', 'd': 'D'}),
 (2,
 {'e': 'E',
  'f': 'F',
  'g': 'G',
  'h': 'H',
  'i': 'I',
  'j': 'J',
  'k': 'K',
  'l': 'L'})]

          

pprint()格式化一個對象,并把它寫至一個數(shù)據(jù)流,這個數(shù)據(jù)流作為參數(shù)傳入(或者是默認的sys.stdout)

注意為什么第二個字典中會顯示一豎列,因為pprint打印支持8個對象以上的豎列打印

2、? 格式化

格式化一個數(shù)據(jù)結構而不把它直接寫至一個流(例如用于日志記錄),可以使用pformat()來構造一個字符串表示。?
?

            
import logging
from pprint import pformat
logging.basicConfig(level = logging.DEBUG,
          format = '%(levelname)-8s %(message)s',
          )
logging.debug('Logging pformatted data')
formatted = pformat(data)
for line in formatted.splitlines():
  logging.debug(line.rstrip())

          

運行結果:
?

            
DEBUG  Logging pformatted data
DEBUG  [(1, {'a': 'A', 'b': 'B', 'c': 'C', 'd': 'D'}),
DEBUG   (2,
DEBUG   {'e': 'E',
DEBUG    'f': 'F',
DEBUG    'g': 'G',
DEBUG    'h': 'H',
DEBUG    'i': 'I',
DEBUG    'j': 'J',
DEBUG    'k': 'K',
DEBUG    'l': 'L'})]

          

然后可以單獨低打印格式化的字符串或者計入日志

splitlines() 按行分割()

rstrip()去除右邊的空格 lstrip()去除左邊的空格 strip()去除兩邊空格。默認為去除空格,也可以傳入需要從兩邊或者其中一邊去除的字符,如strip(‘a')就是去除字符串兩邊的字符'a'
3、? 任意類

如果定制類定義了一個__repr__()方法,pprint()使用的PrettyPrinter類還可以處理這些定制類。
?

            
from pprint import pprint 
class node(object):
  def __init__(self,name,contents =[]):
    self.name = name
    self.contents = contents[:]
  def __repr__(self):
    return ('node(' + repr(self.name) + ',' +
        repr(self.contents) + ')'
        )
trees = [node('node-1'),
     node('node-2',[node('node-2-1')]),
     node('node-3',[node('node-3-1')]),     
     ]
pprint(trees)

          

運行結果:
?

            
[node('node-1',[]),
 node('node-2',[node('node-2-1',[])]),
 node('node-3',[node('node-3-1',[])])]

          

由PrettyPrinter組合嵌套對象的表示,從而返回完整字符串表示。
?4、? 遞歸

遞歸數(shù)據(jù)結構有指向原數(shù)據(jù)源的引用來表示,形式為 。?
?

            
from pprint import pprint 
local_data = ['a','b',1,2]
local_data.append(local_data)
print 'id(local_data) =>',id(local_data)
pprint(local_data)
print local_data

          

運行結果:
?

            
id(local_data) => 47458332363520
['a', 'b', 1, 2, 
            
              ]
['a', 'b', 1, 2, [...]]

            
          

在這個例子中,列表local_data增加到了其自身,這會創(chuàng)建一個遞歸引用

內置函數(shù)id()作用是獲得對象的id值,理論上講每個對象都有一個id值,如果是整數(shù)和字符串((相對較小的時候)),那么相同的值會有相同的id值,但是如果是類,及時相同也會有不同的id值。測試如下:

            
#int or float or lon 都一樣(比較小的時候)
a = 65464131311513l
b = 65464131311513l
c = 65464131311513l
print id(a)
print id(b)
print id(c)
print
a = '12312312'
b = '12312312'
c = '12312312'
print id(a)
print id(b)
print id(c)
print 
a = 65464131311513l*11
b = 65464131311513l*11
c = 65464131311513l*11
print id(a)
print id(b)
print id(c)
print
a = '12312312'*11
b = '12312312'*11
c = '12312312'*11
print id(a)
print id(b)
print id(c)
print 
class Test(object):
  def __init__(self):
    pass
a = Test()
b = Test()
c = Test()
print id(a)
print id(b)
print id(c)
print


          

測試結果:

            
47010342174992

47010342174992

47010342174992


47010343272096

47010343272096

47010343272096


47010343261568

47010343261648

47010343261688


47010343200944

47010343199152

47010343202352


47010343252304

47010343252944

47010343253008


          

5、? 限制嵌套輸出

對于非常深的數(shù)據(jù)結構,可能不要求輸出包含所有細節(jié)。有可能數(shù)據(jù)沒有是當?shù)馗袷交部赡芨袷交谋具^大而無法管理,或者默寫數(shù)據(jù)時多余的。?
?

            
from pprint import pprint 
print 'depth 1 :'
pprint(data,depth=1)
print 
print 'depth 2 :'
pprint(data,depth=2)
print 
print 'depth 3 :'
pprint(data,depth=3)

          

運行結果:

            
depth 1 :
[(...), (...)]
depth 2 :
[(1, {...}), (2, {...})]
depth 3 :
[(1, {'a': 'A', 'b': 'B', 'c': 'C', 'd': 'D'}),
 (2,
 {'e': 'E',
  'f': 'F',
  'g': 'G',
  'h': 'H',
  'i': 'I',
  'j': 'J',
  'k': 'K',
  'l': 'L'})]


          

使用depth參數(shù)可以控制美觀打印機遞歸處理嵌套數(shù)據(jù)結構的深度。輸出中未包含的層次由一個省略號表示
6、? 控制輸出寬度

格式化文本的默認輸出寬度為80列。要調整這個寬度,可以再pprint()中使用參數(shù)width。?
?

            
from pprint import pprint
for width in [80,5]:
  print 'WIDTH = ', width
  pprint(data,width = width)
  print

          

運行結果:
?

            
WIDTH = 80
[(1, {'a': 'A', 'b': 'B', 'c': 'C', 'd': 'D'}),
 (2,
 {'e': 'E',
  'f': 'F',
  'g': 'G',
  'h': 'H',
  'i': 'I',
  'j': 'J',
  'k': 'K',
  'l': 'L'})]
WIDTH = 5
[(1,
 {'a': 'A',
  'b': 'B',
  'c': 'C',
  'd': 'D'}),
 (2,
 {'e': 'E',
  'f': 'F',
  'g': 'G',
  'h': 'H',
  'i': 'I',
  'j': 'J',
  'k': 'K',
  'l': 'L'})]

          

寬度大小不能適應格式化數(shù)據(jù)結構時,如果斬斷或轉行會引入非法的語法,就不會進行截斷或轉行。


更多文章、技術交流、商務合作、聯(lián)系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯(lián)系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發(fā)表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 三穗县| 陆丰市| 云安县| 两当县| 额敏县| 微博| 勃利县| 绥中县| 屏东市| 三门峡市| 宜都市| 彭阳县| 深水埗区| 禹城市| 黎城县| 佛教| 吴旗县| 洛宁县| 屯留县| 沁水县| 乐至县| 竹山县| 长阳| 玉龙| 磐石市| 宜川县| 定州市| 云龙县| 屯昌县| 华池县| 桃园县| 资中县| 商南县| 昌吉市| 特克斯县| 乌什县| 当雄县| 武邑县| 故城县| 延吉市| 香港|