You are viewing a single comment's thread. Return to all comments →
def gradingStudents(grades): res = [] for g in grades: if (g%5) >= 3 and g >= 38: g -= (g%5) res.append(g+5) else: res.append(g) return [x for x in res]
Seems like cookies are disabled on this browser, please enable them to open this website
Grading Students
You are viewing a single comment's thread. Return to all comments →