5 lines
149 B
Python
5 lines
149 B
Python
|
def grade(key):
|
||
|
if key.find("st4r_w4rs_1s_b35t_:D") != -1:
|
||
|
return True, "Great job!"
|
||
|
return False, "Nope. Try reading the help file"
|