首页 > 代码库 > Python内置函数(14)——delattr
Python内置函数(14)——delattr
英文文档:
delattr
(object, name)- 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 todel x.foobar
. - 说明:
- 1. 函数作用用来删除指定对象的指定名称的属性,和setattr函数作用相反。
#定义类A >>> class A: def __init__(self,name): self.name = name def sayHello(self): print(‘hello‘,self.name) #测试属性和方法 >>> a.name ‘小麦‘ >>> a.sayHello() hello 小麦 #删除属性 >>> delattr(a,‘name‘) >>> a.name Traceback (most recent call last): File "<pyshell#47>", line 1, in <module> a.name AttributeError: ‘A‘ object has no attribute ‘name‘
2. 当属性不存在的时候,会报错。
>>> a.name #属性name已经删掉,不存在 Traceback (most recent call last): File "<pyshell#47>", line 1, in <module> a.name AttributeError: ‘A‘ object has no attribute ‘name‘ >>> delattr(a,‘name‘) #再删除会报错 Traceback (most recent call last): File "<pyshell#48>", line 1, in <module> delattr(a,‘name‘) AttributeError: name
3. 不能删除对象的方法。
>>> a.sayHello <bound method A.sayHello of <__main__.A object at 0x03F014B0>> >>> delattr(a,‘sayHello‘) #不能用于删除方法 Traceback (most recent call last): File "<pyshell#50>", line 1, in <module> delattr(a,‘sayHello‘) AttributeError: sayHello >>>
Python内置函数(14)——delattr
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。