5 lines
182 B
Python
5 lines
182 B
Python
|
def grade(key):
|
||
|
if key.find("that_wasn't_so_hard_n0w_was_it?") != -1:
|
||
|
return True, "Yay! Now please tell me you didn't actually paint it . . ."
|
||
|
return False, "Nope!"
|