Python delattr() 函数
Python 内置的 delattr 函数用于删除属性
delattr(x, 'foobar')
相等于 del x.foobar
语法
delattr(object, name)
参数
参数 | 说明 |
---|---|
object | 对象 |
name | 必须是对象的属性 |
返回值
无
范例
下面的代码演示了 delattr() 函数的简单使用
#!/usr/bin/python class Coordinate: x = 10 y = -5 z = 0 point1 = Coordinate() print('x = ',point1.x) print('y = ',point1.y) print('z = ',point1.z) delattr(Coordinate, 'z') print('--删除 z 属性后--') print('x = ',point1.x) print('y = ',point1.y) # 触发错误 print('z = ',point1.z)
运行以上 Python 代码,输出结果如下
('x = ', 10) ('y = ', -5) ('z = ', 0) --删除 z 属性后-- ('x = ', 10) ('y = ', -5) Traceback (most recent call last): File "main.py", line 22, in <module> print('z = ',point1.z) AttributeError: Coordinate instance has no attribute 'z'