Python hasattr() 函数
Posted 小可爱466
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python hasattr() 函数相关的知识,希望对你有一定的参考价值。
hasattr() 函数用于判断对象是否包含对应的属性。(has attribute)
hasattr(object, name)
参数
- object -- 对象。
- name -- 字符串,属性名。
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‘)) # 没有该属性
http://www.runoob.com/python/python-func-hasattr.html
以上是关于Python hasattr() 函数的主要内容,如果未能解决你的问题,请参考以下文章
Python:hasattr() getattr() setattr() 函数