Discuss / Python / 实例属性和类属性-练习

实例属性和类属性-练习

Topic source

KonoNA7

#1 Created at ... [Delete] [Delete and Lock User]
class Student(object):
    count = 0

    def __init__(self, name):
        self.name = name
        Student.count += 1

  • 1

Reply