Guest User

Untitled

a guest
Apr 24th, 2018
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. while True:
  2. username = input("Username? ")
  3. password = input("Password? ")
  4.  
  5. if username != 'c4e':
  6. print("No such user")
  7. elif password != 'codethechange':
  8. print("Wrong password")
  9. else:
  10. print("Welcome!!!")
  11. break
Add Comment
Please, Sign In to add comment