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() 函数

Python内置函数(27)——hasattr

Python内置函数(51)——hasattr

Python:hasattr() getattr() setattr() 函数

python 属性函数分析 - hasattr() getattr() setattr()

python 语法 内置函数 hasattr getattr setattr dir