码迷,mamicode.com
首页 > 编程语言 > 详细

Python hasattr() 函数

时间:2019-01-10 20:51:08      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:字符串   style   nat   point   func   fun   www   span   参数   

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

标签:字符串   style   nat   point   func   fun   www   span   参数   

原文地址:https://www.cnblogs.com/lucky466/p/10250794.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!