The get_average method was kind of a struggle, but I got it working like this (add method to Student class):
def get_average(self):
self.scores = []
for grade in self.grades:
self.scores.append(grade.score)
print(sum(self.scores)/len(self.scores))