“Python func delattr”的版本间差异

本页内容
上一节: Python3_func_reload 下一节: Python_func_hash
Neo讨论 | 贡献
(创建页面,内容为“{{DISPLAYTITLE:delattr()}}65 = Python delattr() 函数 = Python 内置函数 == 描述 == '''delattr''' 函数用于删除属性。 delattr(x, 'foobar') 相等于 del x.foobar。 == 语法 == delattr 语法: <sample title="" desc="" lang="python" hererun="1"> delattr(object, name) </sample> == 参数 == * object -- 对象。 * name -- 必须是对象的属性。 == 返回值 ==…”)
 
(没有差异)

2022年8月17日 (三) 21:50的最新版本

Python delattr() 函数

Python 内置函数

描述

delattr 函数用于删除属性。

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

语法

delattr 语法:


示例

delattr(object, name)

参数

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

返回值

无。

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


示例

#!/usr/bin/python
# -*- coding: UTF-8 -*-

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)

输出结果:


示例

('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'

Python 内置函数

上一节: Python3_func_reload 下一节: Python_func_hash
此页面最后编辑于2022年8月17日 (星期三) 21:50。