You are viewing a single comment's thread. Return to all comments →
def roundG(x): return x if (x<38 or (x%5)<3) else x + 5 - (x%5) def gradingStudents(grades): return [roundG(x) for x in grades]
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 →