You are viewing a single comment's thread. Return to all comments →
Simple code in python:
def gradingStudents(grades): for i in grades: if i >= 38: if (i + 1) % 5 == 0: i += 1 if (i + 2) % 5 == 0: i += 2 print(i)
Seems like cookies are disabled on this browser, please enable them to open this website
Two Strings
You are viewing a single comment's thread. Return to all comments →
Simple code in python: