Discuss / Python / 打卡第五天

打卡第五天

Topic source

class Student(object):

    count = 0

    def __init__(self, name):

        self.name = name

        Student.count+=1

说明:其中count为类属性,为Student的属性


  • 1

Reply