最赞回答 / 不会换气的鱼
那你还是没明白本章在讲什么。本章讲的就是:用装饰器@property 把 get/set 方法“装饰”成属性调用把 方法 装饰成 属性当然,具体的实现细节还得看@property的源码,现在只要知道@property的用途就足够了。
2015-04-16
最新回答 / 人間世界
def __init__(self, name, score): self.name = name if score<=100: self.__score = score else: raise ValueError('wrong')
2015-04-14