Python中的getattr()函數詳解:

來源:互聯網
上載者:User

標籤:

Python中的getattr()函數詳解:

getattr(object, name[, default]) -> value


Get a named attribute from an object; getattr(x, ‘y‘) is equivalent to x.y. 

When a default argument is given, it is returned when the attribute doesn‘t 

exist; without it, an exception is raised in that case.


解釋的很抽象 告訴我這個函數的作用相當於是


object.name

getattr(object,name)

其實為什麼不用object.name而有的時候一定要用getattr(object,name),主要是由於這裡的name有可能是變數,我們不知道這個name到底是什麼,


只能用getattr(object,name)去獲得。

執行個體:

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 "\r\n".join(["%s%s"%(method.ljust(spacing),processFunc(str(getattr(object,method).__doc__)))for method in methodList])


if __name__==‘__main__‘:

    print info.__doc__

    print info([])


理論上, getattr 可以作用於 元組,但是由於元組沒有方法,所以不管你指定什麼屬性名稱  getattr 都會引發一個異常。getattr()可以作用於


內建資料類型也可以作用於模組。

getattr()三個參數,第一個是對象,第二個是方法,第三個是可選的一個預設的傳回值。如果第二個參數指定的屬性或方法沒找到則返回這個預設


值。


getattr()作為一個分發者:


import statsout


def output(data,format=‘text‘):

    output_function=getattr(statsout,‘output_%s‘%format,statsout.output_text)

    return output_function(data)


Python中的getattr()函數詳解:

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.