Python getattr() 函数

http://www.runoob.com/python/python-func-getattr.html
【需要注意的是,getattr(object, attrname)的第 2 个参数应该是 字符串

Python getattr() 函数

描述

getattr() 函数用于返回一个对象属性值。

语法

getattr 语法:
getattr(object, name[, default])

参数

object – 对象。
name – 字符串,对象属性。
default – 默认返回值,如果不提供该参数,在没有对应属性时,将触发 AttributeError。

返回值

返回对象属性值。

实例

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

>>>class A(object):
...     bar = 1
... 
>>> a = A()
>>> getattr(a, 'bar')        # 获取属性 bar 值
1
>>> getattr(a, 'bar2')       # 属性 bar2 不存在,触发异常
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'A' object has no attribute 'bar2'
>>> getattr(a, 'bar2', 3)    # 属性 bar2 不存在,但设置了默认值
3

我补充的代码:

>>> class C:
	a = 1
	def __init__(self):
		self.b = 2

		
>>> c1 = C()
>>> getattr(c1, a)
Traceback (most recent call last):
  File "<pyshell#47>", line 1, in <module>
    getattr(c1, a)
TypeError: getattr(): attribute name must be string
>>> getattr(c1, 'a')
1
>>> getattr(c1, 'b')
2
>>> getattr(C, 'a')
1
>>> getattr(C, 'b')
Traceback (most recent call last):
  File "<pyshell#51>", line 1, in <module>
    getattr(C, 'b')
AttributeError: type object 'C' has no attribute 'b'
>>> 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值