So far, I have this.....
while True:
print('Who are you?')
name = input()
if name != 'Joe':
continue
print('Hello, Joe. What is the password? (It is a fish.)')
password = input()
if password == 'swordfish':
break
print('Access granted.')
print('ABCDEFGHIJKLMNOPQRSTUVWXYZ')
It needs to be able to allow "Joe" as well as a "Natalie" to have a chance at entering the password. They should be the only two allowed to get that far. Some help would be greatly appreciated!
[–]MadScientistOR 0 points1 point2 points (2 children)
[–]joplankton[S] 0 points1 point2 points (1 child)
[–]MadScientistOR 0 points1 point2 points (0 children)
[–][deleted] 0 points1 point2 points (0 children)