5 lines
152 B
Python
5 lines
152 B
Python
|
def grade(random, key):
|
||
|
if key.lower().find("foxonlyfd") != -1:
|
||
|
return True, "Correct!"
|
||
|
return False, "Work on your tech skill, skrub."
|