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