鱼C论坛

 找回密码
 立即注册
查看: 2381|回复: 0

[技术交流] Python delattr() 函数

[复制链接]
发表于 2020-3-17 17:21:59 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 永恒的蓝色梦想 于 2020-3-17 17:33 编辑

Python delattr() 函数


语法

  1. delattr(obj, name, /)
复制代码


描述

delattr() 函数用于删除对象的指定属性。delattr(x, 'y') 相当于 del x.y

参数

参数描述
obj对象
name字符串,为对象的属性


返回值

None

例子

  1. >>> class Test:
  2.         testList=[]
  3.         def testMethod(self):
  4.                 ...

  5. >>> Test.testList
  6. []
  7. >>> delattr(Test,'testList')
  8. >>> hasattr(Test,'testList')
  9. False
  10. >>>
  11. >>> Test.testMethod
  12. <function Test.testMethod at 0x0000022C02EB3040>
  13. >>> delattr(Test,'testMethod')
  14. >>> hasattr(Test,'testMethod')
  15. False
复制代码

本帖被以下淘专辑推荐:

小甲鱼最新课程 -> https://ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-5-14 14:07

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表