You are viewing a single comment's thread. Return to all comments →
def gradingStudents(grades): # Write your code here return [ math.ceil(g / 5) * 5 if (g >= 38 and (math.ceil(g / 5) * 5 - g) < 3) else g for g 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 →