标签:self class name 统计 pre count object sel nbsp
为了统计学生人数,可以给Student类增加一个类属性,每创建一个实例,该属性自动增加:
class Student(object): count=0 def __init__(self,name): self.name = name Student.count += 1
标签:self class name 统计 pre count object sel nbsp
原文地址:https://www.cnblogs.com/litthorse/p/8759233.html