怎么判断 Python 对象是否包含某个属性

2024-11-24 05:01:31
推荐回答(1个)
回答1:

def hasattr(p_object, name): # real signature unknown; restored from __doc__
    """
    hasattr(object, name) -> bool
    
    Return whether the object has an attribute with the given name.
    (This is done by calling getattr(object, name) and catching exceptions.)
    """
    return False