You are viewing a single comment's thread. Return to all comments →
rounded_grades = [] for grade in grades: if grade >= 38: remainder = grade % 5 multiple5 = grade + (5 - remainder) if multiple5 - grade < 3: grade = multiple5 rounded_grades.append(grade) return rounded_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 →