- Python 3 教程
- Python3 基本数据类型
- Python3 解释器
- Python3 注释
- Python3 运算符
- Python3 数字(Number)
- Python3 字符串
- Python3 列表
- Python3 元组
- Python3 字典
- Python3 编程第一步
- Python3 条件控制
- Python3 循环语句
- Python3 迭代器与生成器
- Python3 函数
- Python3 数据结构
- Python3 模块
- Python3 输入和输出
- Python3 File(文件) 方法
- Python3 OS 文件/目录方法
- Python3 错误和异常
- Python3 面向对象
- Python3 标准库概览
- Python3 实例
- Python3 正则表达式
- Python CGI编程
- Python3 MySQL 数据库连接
- Python3 网络编程
- Python3 SMTP发送邮件
- Python3 多线程
- Python3 XML解析
- Python3 JSON 数据解析
- Python3 日期和时间
- Python3 range() 函数用法
- Python3 内置函数
Python delattr() 函数
描述
delattr 函数用于删除属性。
delattr(x, 'foobar') 相等于 del x.foobar。
语法
setattr 语法:
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 hash() 函数
下一篇:Python help() 函数
关注微信小程序
扫描二维码
程序员编程王