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