赞
踩
Python hasattr() 函数
hasattr() 函数用于判断对象是否包含对应的属性。
hasattr 语法:
hasattr(object, name)
如果对象有该属性,返回 True, 否则返回 False。
#!/usr/bin/python
# -*- coding: UTF-8 -*-
class Coordinate:
x = 10
y = -5
z = 0
point1 = Coordinate()
print(hasattr(point1, 'x'))
print(hasattr(point1, 'y'))
print(hasattr(point1, 'z'))
print(hasattr(point1, 'no')) # 没有该属性
输出结果:
True
True
True
False
参考链接:
[1] Python 内置函数
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。