Advertisement
Guest User

Untitled

a guest
Jan 9th, 2019
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. Usernames=['ESnowden','TBernersLee','BGates','SJobs','Alan Turing']
  2. Passwords=['Decode1','decode1','1nteger','m1cro5oft','app1e','bl3tchl3y']
  3. print("Hiya")
  4. user_username=input("Username: ")
  5. user_password=input("Password: ")
  6.  
  7. if user_username == Usernames[0] and user_password == Passwords[0] or user_password == Passwords[1]:
  8. print("Welcome you have clearence access level:\n ")
  9. print(" * ")
  10. print(" * * ")
  11. print(" * * ")
  12. print(" * ")
  13. print(" * ")
  14. print(" * ")
  15. print(" * ")
  16. print(" * ")
  17. print(" * ")
  18. print(" * * * * * ")
  19. else:
  20. print("incorrect")
  21.  
  22. if user_username == Usernames[1] and user_password == Passwords[2]:
  23. print("Welcome you have clearence access level:\n ")
  24. print(" * ")
  25. print(" * * ")
  26. print(" * * ")
  27. print(" * ")
  28. print(" * ")
  29. print(" * ")
  30. print(" * ")
  31. print(" * ")
  32. print(" * ")
  33. print(" * * * * * ")
  34. else:
  35. print("incorrect")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement