Skip to Content
流畅的Python(第2版)
book

流畅的Python(第2版)

by Luciano Ramalho
April 2023
Intermediate to advanced
769 pages
25h 16m
Chinese
Posts & Telecom Press
Content preview from 流畅的Python(第2版)
666
22
的工厂函数,改成更易扩展的描述符类,使用专门的子类执行不同的验证。
接下来分析删除属性的问题,以此结束对特性的讨论。
22.7
 处理属性删除操作
del
语句不仅可以删除变量,也可以删除属性。
>>> class Demo:
... pass
...
>>> d = Demo()
>>> d.color = 'green'
>>> d.color
'green'
>>> del d.color
>>> d.color
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'Demo' object has no attribute 'color'
其实,
Python
编程不常删除属性,通过特性删除属性则更少见。但是,
Python
支持这么
做,我可以虚构一个示例,演示删除方式。
定义特性时,可以使用
@my_propety.deleter
装饰器包装一个方法,负责删除特性管理的
属性。下面我来兑现承诺,虚构一个示例。这个示例的灵感来自电影《巨蟒与圣杯》中的
黑衣骑士角色,如示例
22-30
所示。
示例
22-30
blackknight.py
class BlackKnight:
def __init__(self):
self.phrases = [
('an arm', "'Tis but a scratch."),
('another arm', "It's ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Python高级编程(第2版)

Python高级编程(第2版)

Posts & Telecom Press, Michał Jaworski, Tarek Ziadé
Kafka权威指南(第2版)

Kafka权威指南(第2版)

Gwen Shapira, Todd Palino, Rajini Sivaram, Krit Petty
Python贝叶斯分析(第2版)

Python贝叶斯分析(第2版)

Posts & Telecom Press, Osvaldo Martin

Publisher Resources

ISBN: 9787115612366