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