python - delattr(object, name)
程序员文章站
2022-04-28 22:32:34
...
delattr(object, name)
中文说明:删除object对象名为name的属性。这个函数的命名真是简单易懂啊,和jquery里面差不多,但是功能不一样哦,注意一下。
参数object:对象。
参数name:属性名称字符串。
版本:各版本中都支持该函数,python3中仍可用。
英文说明:This is a relative of setattr(). The arguments are an object and a string. The string must be the name of one of the object’s attributes. The function deletes the named attribute, provided the object allows it. For example, delattr(x, 'foobar') is equivalent to del x.foobar.
代码实例:
>>> class Person: ... def __init__(self, name, age): ... self.name = name ... self.age = age ... >>> tom = Person("Tom", 35) >>> dir(tom) ['__doc__', '__init__', '__module__', 'age', 'name'] >>> delattr(tom, "age") >>> dir(tom) ['__doc__', '__init__', '__module__', 'name']
推荐阅读
-
Python中if __name__ == "__main__"详细解释
-
python编程排除163邮箱发送邮件报错(AttributeError: ‘tuple‘ object has no attribute ‘encode‘)
-
全面了解Python的getattr(),setattr(),delattr(),hasattr()
-
浅析Python中的getattr(),setattr(),delattr(),hasattr()
-
python中的__getattr__、__getattribute__、__setattr__、__delattr__、__dir__
-
python编程排除163邮箱发送邮件报错(AttributeError: ‘tuple‘ object has no attribute ‘encode‘)
-
Python判断对象是否为文件对象(file object)的三种方法示例
-
全面了解Python的getattr(),setattr(),delattr(),hasattr()
-
浅析Python中的getattr(),setattr(),delattr(),hasattr()
-
Python中if __name__ == "__main__"详细解释