Python标准库:内置函数hasattr(object, name)

时间:2022-12-24 19:11:10

Python标准库:内置函数hasattr(object, name)

本函数是用来判断对象object的属性(name表示)是否存在。如果属性(name表示)存在,则返回True,否则返回False。参数object是一个对象,参数name是一个属性的字符串表示。

例子:

  1. #hasattr()
  2. class Foo:
  3. def __init__(self):
  4. self.x = 123
  5. def test(x):
  6. self.x = x
  7. foo = Foo()
  8. print(hasattr(foo, 'x'))
  9. print(hasattr(foo, 'y'))
  10. print(hasattr(foo, 'test'))

输出结果如下:

True

False

True

蔡军生 QQ:9073204  深圳