Python delattr() 函数

描述

Python delattr 函数用于删除属性。

delattr(x, 'foobar') 相等于 del x.foobar。

语法

delattr 语法:

  1. delattr(object, name)

参数

  • object:对象。
  • name:必须是对象的属性。

返回值

无。

实例

以下实例展示了 delattr 的使用方法:

  1. #!/usr/bin/python
  2. # -*- coding: UTF-8 -*-
  3. class Coordinate:
  4. x = 10
  5. y = -5
  6. z = 0
  7. point1 = Coordinate()
  8. print('x = ',point1.x)
  9. print('y = ',point1.y)
  10. print('z = ',point1.z)
  11. delattr(Coordinate, 'z')
  12. print('--删除 z 属性后--')
  13. print('x = ',point1.x)
  14. print('y = ',point1.y)
  15. # 触发错误
  16. print('z = ',point1.z)

输出结果:

  1. ('x = ', 10)
  2. ('y = ', -5)
  3. ('z = ', 0)
  4. --删除 z 属性后--
  5. ('x = ', 10)
  6. ('y = ', -5)
  7. Traceback (most recent call last):
  8. File "test.py", line 22, in <module>
  9. print('z = ',point1.z)
  10. AttributeError: Coordinate instance has no attribute 'z'