1 # Author : Kelvin 2 # Date : 2019/1/25 15:20 3 class Foo: 4 def __init__(self): 5 self.original_price = 100 6 self.discount = 0.8 7 8 @property 9 def price(self): 10 new_price = self.original_price * self.discount 11 return new_price 12 13 @price.setter 14 def price(self, val): 15 self.original_price = val 16 17 @price.deleter 18 def price(self): 19 del self.original_price 20 21 22 f = Foo() 23 print(f.price) 24 f.price = 200 25 print(f.price) 26 del f.price 27 print(f.__dict__) 28 29 """输出结果: 30 80.0 31 160.0 32 {'discount': 0.8} 33 """
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/187809.html