4 lines
152 B
Python
4 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."
|