Question: Add three methods to the Student class that compare two Student objects. One method should test for equality. A second method should test for less

Add three methods to the Student class that compare two Student objects. One method should test for equality. A second method should test for less than. The third method should test for greater than or equal to. In each case, the method returns the result of the comparison of the two stuclass Student(object):
"""Represents a student."""
def __init__(self, name, number):
"""All scores are initially 0."""
self.name = name
self.scores =[]
for count in range(number):
self.scores.append(0)
def getName(self):
"""Returns the student's name."""
return self.name
def setScore(self, i, score):
"""Resets the ith score, counting from 1."""
self.scores[i -1]= score
def getScore(self, i):
"""Returns the ith score, counting from 1."""
return self.scores[i -1]
def getAverage(self):
"""Returns the average score."""
return sum(self.scores)/ len(self._scores)
def getHighScore(self):
"""Returns the highest score."""
return max(self.scores)
def __str__(self):
"""Returns the string representation of the student."""
return "Name: "+ self.name +"
Scores: "+\
"".join(map(str, self.scores)) def main():
"""A simple test."""
student = Student("Ken",5)
print(student)
for i in range(1,6):
student.setScore(i,100)
print(student)
if __name__=="__main__":
main()

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Accounting Questions!