Dive into Python Chapter4

Chapter 4. 自省

apihelper.py

def info(object, spacing=10, collapse=1):
  """Print methods and doc strings.

  Takes module, class, list, dictionary or string."""
  methodList = [method for method in dir(object) if callable(getattr(object, method))]
  processFunc = collapse and (lambda s: " ".join(s.split())) or (lambda s: s)
  print('\n'.join(['%s %s' % (method.ljust(spacing), processFunc(str(getattr(object, method).__doc__))) for method in methodList]))

if __name__ == '__main__':
  print(info._doc__)

用法示例

>>> from apihelper import info
>>> li = []
>>> info(li)
append L.append(object) -- append object to end
count L.count(value) -> integer -- return number of occurrences of value
extend L.extend(list) -- extend list by appending list elements
index L.index(value) -> integer -- return index of first occurrence of value
insert L.insert(index, object) -- insert object before index
pop L.pop([index]) -> item -- remove and return item at index (default last)
remove L.remove(value) -- remove first occurrence of value
reverse L.reverse() -- reverse *IN PLACE*
sort L.sort([cmpfunc]) -- sort *IN PLACE*; if given, cmpfunc(x, y) -> -1, 0, 1

缺省地,程序輸出進(jìn)行了格式化處理,以使其易于閱讀。多行 doc string 被合
并到單行中,要改變這個(gè)選項(xiàng)需要指定 collapse 參數(shù)的值為 0。如果函數(shù)名稱(chēng)
長(zhǎng)于 10 個(gè)字符,你可以將 spacing 參數(shù)的值指定為更大的值以使輸出更容易閱
讀。

apihelper的高級(jí)用法

>>> import odbchelper
>>> info(odbchelper)
buildConnectionString Build a connection string from a dictionary Returns string.
>>> info(odbchelper, 30)
buildConnectionString Build a connection string from a dictionary Returns string.
>>> info(odbchelper, 30, 0)
buildConnectionString Build a connection string from a dictionary

Returns string.

可選參數(shù)

def info(object, spacing=10, collapse=1):

spacing 和 collapse 是可選參數(shù),因?yàn)樗鼈円呀?jīng)定義了缺省值。object 是必備參數(shù),因?yàn)樗鼪](méi)有指定缺省值。

命名參數(shù)

在 Python 中,參數(shù)可以通過(guò)名稱(chēng)以任意順序指定。

info(odbchelper)
info(odbchelper, 12)
info(odbchelper, collapse=0)
info(spacing=15, object=odbchelper)

使用內(nèi)置函數(shù) type, str, dir

  1. type函數(shù)
>>> type(1) (1)
<type 'int'>
>>> li = []
>>> type(li) (2)
<type 'list'>
>>> import odbchelper
>>> type(odbchelper) (3)
<type 'module'>
>>> import types (4)
>>> type(odbchelper) == types.ModuleType
True
  • 整型、字符串、列表、字典、元組、函數(shù)、類(lèi)、模塊,甚至類(lèi)
    型對(duì)象都可以作為參數(shù)被 type 函數(shù)接受
  • 可以使用 types 模塊中的常量來(lái)進(jìn)行對(duì)象類(lèi)型的比較
  • str函數(shù)
    str 將數(shù)據(jù)強(qiáng)制轉(zhuǎn)換為字符串。每種數(shù)據(jù)類(lèi)型都可以強(qiáng)制轉(zhuǎn)換為字符串
>>> str(1) (1)
'1'
>>> horsemen = ['war', 'pestilence', 'famine']
>>> horsemen
['war', 'pestilence', 'famine']
>>> horsemen.append('Powerbuilder')
>>> str(horsemen) (2)
"['war', 'pestilence', 'famine', 'Powerbuilder']"
>>> str(odbchelper) (3)
"<module 'odbchelper' from 'c:\\docbook\\dip\\py\\odbchelper.py'>"
>>> str(None) (4)
'None'
  • dir函數(shù)
    dir 函數(shù)返回任意對(duì)象的屬性和方法列表,包括模塊對(duì)象、函數(shù)對(duì)象、字符串對(duì)象、列表對(duì)象、字典對(duì)象 ……
>>> li = []
>>> dir(li) (1)
['append', 'count', 'extend', 'index', 'insert',
'pop', 'remove', 'reverse', 'sort']
>>> d = {}
>>> dir(d) (2)
['clear', 'copy', 'get', 'has_key', 'items', 'keys', 'setdefault', 'update', 'values']
>>> import odbchelper
>>> dir(odbchelper) (3)
['__builtins__', '__doc__', '__file__', '__name__', 'buildConnectionString']
  • callable函數(shù)
    它接收任何對(duì)象作為參數(shù),如果參數(shù)對(duì)象是可調(diào)用的,返回 True;否則返回 False。可調(diào)用對(duì)象包括函數(shù)、類(lèi)方法,甚至類(lèi)自身。
>>> import string
>>> string.punctuation (1)
'!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~'
>>> string.join (2)
<function join at 00C55A7C>
>>> callable(string.punctuation) (3)
False
>>> callable(string.join) (4)
True

通過(guò)getattr獲取對(duì)象引用

使用 getattr 函數(shù),可以得到一個(gè)直到運(yùn)行時(shí)才知道名稱(chēng)的函數(shù)的引用。

>>> li = ["Larry", "Curly"]
>>> li.pop (1)
<built-in method pop of list object at 010DF884>
>>> getattr(li, "pop") (2)
<built-in method pop of list object at 010DF884>
>>> getattr(li, "append")("Moe") (3)
>>> li
["Larry", "Curly", "Moe"]
>>> getattr({}, "clear") (4)
<built-in method clear of dictionary object at 00F113D4>

用于模塊的getattr

>>> import odbchelper
>>> odbchelper.buildConnectionString (1)
<function buildConnectionString at 00D18DD4>
>>> getattr(odbchelper, "buildConnectionString") (2)
<function buildConnectionString at 00D18DD4>
>>> object = odbchelper
>>> method = "buildConnectionString"
>>> getattr(object, method) (3)
<function buildConnectionString at 00D18DD4>
>>> type(getattr(object, method)) (4)
<type 'function'>
>>> import types
>>> type(getattr(object, method)) == types.FunctionType
True
>>> callable(getattr(object, method)) (5)
True

使用getattr創(chuàng)建分發(fā)者

import statsout
def output(data, format="text"):
  output_function = getattr(statsout, "output_%s" % format)
  return output_function(data)

如果用戶(hù)傳入一個(gè)格式參數(shù),但是在 statsout 中沒(méi)有定義相應(yīng)的格式輸出函數(shù),會(huì)發(fā)生什么呢?還好,getattr 會(huì)返回 None,它會(huì)取代一個(gè)有效函數(shù)并被賦值給 output_function,然后下一行調(diào)用函數(shù)的語(yǔ)句將會(huì)失敗并拋出一個(gè)異常。這種方式不好。值得慶幸的是,getattr 能夠使用可選的第三個(gè)參數(shù),一個(gè)缺省返回值。

getattr缺省值

import statsout
def output(data, format="text"):
  output_function = getattr(statsout, "output_%s" % format, statsout.output_text)
  return output_function(data)

這個(gè)函數(shù)調(diào)用一定可以工作,因?yàn)槟阍谡{(diào)用 getattr 時(shí)添加了第三個(gè)參數(shù)。第三個(gè)參數(shù)是一個(gè)缺省返回值,如果第二個(gè)參數(shù)指定的屬性或者方法沒(méi)能找到,則將返回這個(gè)缺省返回值。

過(guò)濾列表

語(yǔ)法
[mapping-expression for element in source-list if filter-expression]

>>> li = ["a", "mpilgrim", "foo", "b", "c", "b", "d", "d"]
>>> [elem for elem in li if len(elem) > 1] (1)
['mpilgrim', 'foo']
>>> [elem for elem in li if elem != "b"] (2)
['a', 'mpilgrim', 'foo', 'c', 'd', 'd']
>>> [elem for elem in li if li.count(elem) == 1] (3)
['a', 'mpilgrim', 'foo', 'c']

回到apihelper.py中的這一行:

methodList = [method for method in dir(object) if callable(getattr(object, method))]

and 和 or 的特殊性質(zhì)

and 和 or 執(zhí)行布爾邏輯演算,它們并不返回布爾值,而是返回它們實(shí)際進(jìn)行比較的值之一。

  1. and
  • 如果布爾環(huán)境中的所有值都為真,那么 and 返回最后一個(gè)值。
  • 如果布爾環(huán)境中的某個(gè)值為假,則 and 返回第一個(gè)假值。
>>> 'a' and 'b'
'b'
>>> '' and 'b'
''
>>> 'a' and 'b' and 'c'
'c'
  • or
    • 使用 or 時(shí),在布爾環(huán)境中從左到右演算值,就像 and 一樣。如果有一個(gè)值為真,or 立刻返回該值。
    • 如果所有的值都為假,or 返回最后一個(gè)假值。
    >>> 'a' or 'b' (1)
    'a'
    >>> '' or 'b' (2)
    'b'
    >>> '' or [] or {} (3)
    {}
    >>> def sidefx():
    ... print "in sidefx()"
    ... return 1
    >>> 'a' or sidefx() (4)
    'a'
    
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀(guān)點(diǎn),簡(jiǎn)書(shū)系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

推薦閱讀更多精彩內(nèi)容