Discuss / Python / 作业

作业

Topic source

B O O M!

#1 Created at ... [Delete] [Delete and Lock User]

class Student(object):

    count = 0

    def __init__(self, name):

        self.name = name

        Student.count += 1

        self.count = Student.count


  • 1

Reply