1def grade(autogen, key): 2 if key.lower().find("4ud10_st3g") != -1: 3 return True, "Correct" 4 return False, "Incorrect" 5 6