Discuss / Python / 交作业

交作业

Topic source

啊游客

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

class Student(object): """docstring for Student""" count=0 def init(self, name): self.name = name Student.count=Student.count+1

if Student.count != 0: print('测试失败!') else: bart = Student('Bart') if Student.count != 1: print('测试失败!') else: lisa = Student('Bart') if Student.count != 2: print('测试失败!') else: print('Students:', Student.count) print('测试通过!')


  • 1

Reply