Discuss / Python / 作业

作业

Topic source

祥子920

#1 Created at ... [Delete] [Delete and Lock User]
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
class Student(object):
    count = 0


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


  • 1

Reply