Content
USERNAMES PASSWORDS 5 6 7 8 9 10 11 12 13 def newUser (username, password) : USERNAMES username PASSWORDS password return def authenticate (username, password): if (username in USERNAMES) and (password in PASSWORDS) : return True return False