4 lines
121 B
Python
4 lines
121 B
Python
def grade(autogen, key):
|
|
if key.find("Paris,Blair") != -1:
|
|
return True, "Correct!"
|
|
return False, "Nope!"
|