5 lines
123 B
Python
5 lines
123 B
Python
|
def grade(random, key):
|
||
|
if key.find("r0p_7o_v1ct0ry") != -1:
|
||
|
return True, "Correct!"
|
||
|
return False, "Nope."
|