Python 内建函数 - delattr(object, name)

Manual

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.

直译

该函数与setattr()关联,参数是一个对像和一个字符串,字符串必须是对象中某个属性名称,该函数删除以此命名的属性。例如:delattr(x, ‘foobar’)等同于del x.foobar。

实例

>>> class CSDN:
    def foobar(self):
        print('Hello CSDNer!')
>>> CSDN().foobar()
Hello CSDNer!
>>> delattr(CSDN, 'foobar')
>>> CSDN().foobar()
Traceback (most recent call last):
  File "<pyshell#153>", line 1, in <module>
    CSDN().foobar()
AttributeError: 'CSDN' object has no attribute 'foobar'

拓展阅读

setattr()
hasattr()
getattr()

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值