delattr 函数用于删除属性。
delattr(x, 'foobar') 相等于 del x.foobar。
setattr 语法:
delattr(object, name)
无。
以下实例展示了 delattr 的使用方法:
输出结果:
('x = ', 10) ('y = ', -5) ('z = ', 0) --删除 z 属性后-- ('x = ', 10) ('y = ', -5) Traceback (most recent call last): File "test.py", line 22, in <module> print('z = ',point1.z) AttributeError: Coordinate instance has no attribute 'z'