Python getattr() 函數(shù)

2019-03-16 10:15 更新

Python getattr() 函數(shù)

Python 內(nèi)置函數(shù) Python 內(nèi)置函數(shù)

描述

Python getattr() 函數(shù)用于返回一個對象屬性值。

語法

getattr 語法:

getattr(object, name[, default])

參數(shù)

  • object:對象。
  • name:字符串,對象屬性。
  • default:默認(rèn)返回值,如果不提供該參數(shù),在沒有對應(yīng)屬性時,將觸發(fā) AttributeError。

返回值

返回對象屬性值。

實例

以下實例展示了 getattr 的使用方法:

>>>class A(object):
... bar = 1
...
>>> a = A()
>>> getattr(a, 'bar') # 獲取屬性 bar 值
1
>>> getattr(a, 'bar2') # 屬性 bar2 不存在,觸發(fā)異常
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'A' object has no attribute 'bar2'
>>> getattr(a, 'bar2', 3) # 屬性 bar2 不存在,但設(shè)置了默認(rèn)值
3
>>>

Python 內(nèi)置函數(shù) Python 內(nèi)置函數(shù)

以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號