Python hasattr() 函数
Python基础 2022-06-06 14:34:05小码哥的IT人生shichen
Python hasattr() 函数
实例
检查 "Person" 对象是否有 "age" 属性:
class Person:
name = "Bill"
age = 63
country = "USA"
x = hasattr(Person, 'age')
完整实例:
class Person:
name = "Bill"
age = 63
country = "USA"
x = hasattr(Person, 'age')
print(x)
定义和用法
如果指定的对象拥有指定的属性,则 hasattr() 函数将返回 True,否则返回 False。
语法
hasattr(object, attribute)
参数值
参数 | 描述 |
---|---|
object | 必需。对象。 |
attribute | 您要检查是否存在的属性名称。 |