Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Students:
- studentCount = 0
- def __init__(self, name, grades)
- self.name = name
- self.grades = grades
- Students.studentCount += 1
- def displayCount(self):
- print "Total Student %d" % Students.studentsCount
- def displayStudents(self):
- print "Name : ", self.name, ", Grades: ", self.grades
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement