代码和答案一样,结果却不对,
和答案一样的代码,结果却不对。
和答案一样的代码,结果却不对。
2018-08-25
class Person(object): __count = 0 @classmethod def how_many(cls): return cls.__count def __init__(self,name): self.name=name Person.__count=Person.__count+1 p1 = Person('Bob') print Person.how_many() p2 = Person('Alice') print Person.how_many() try: print Person.__count except AttributeError: print 'attributeerror'
举报