Discuss / Python / 习题打卡

习题打卡

Topic source

class Student(object):

    count = 0

    def __init__(self, name):

        self.name = name

        Student.count+=1


  • 1

Reply