Python getattr() 函数
Posted 背了个影子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python getattr() 函数相关的知识,希望对你有一定的参考价值。
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 >>>
getattr(sys.modules[__name__], func_name)的含义便是找到当前文件下名称为func_name的对象(类对象或者函数对象)
以上是关于Python getattr() 函数的主要内容,如果未能解决你的问题,请参考以下文章