ARTICLE DETAIL

建站实战干货

来自一线的建站与推广经验沉淀,每一条都经过真实交付验证。

python描述符装饰器 property的联合套用

2026/9/4 6:37:06 拓冰建站 浏览量
python描述符装饰器 property的联合套用

python描述符装饰器 property的联合套用

def get_discount_price(f):def _f2(self):return f(self)*self.discountreturn _f2
class Product:def __init__(self, price, discount):self.price = priceself.discount = discount@property@get_discount_price   def discount_price(self):return self.pricep = Product(100, 0.9)
# print(p.get_price())
print(p.discount_price)


运行结果:

image