You are viewing a single comment's thread. Return to all comments →
def gradingStudents(grades): li = [] for i in grades: if i < 38: li.append(i) else: if (i+2)%5==0 : li.append(i+2) elif (i+1)%5==0: li.append(i+1) else: li.append(i) return li
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 →