摘要: 一、classmethod装饰器函数 class Goods: __discount = 0.8 def __init__(self): self.__price = 5 self.price = self.__price * self.__discount @classmethod # 把一个对象 阅读全文
posted @ 2020-07-01 21:55 Jason857 阅读(114) 评论(0) 推荐(0) 编辑