Guest User

Untitled

a guest
Feb 17th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. print('Please enter your username')
  2. username = input()
  3.  
  4. if username == 'User 1':
  5.  
  6. print(Hello ' + username + ' please enter our password')
  7.  
  8.  
  9.  
  10. password = input()
  11.  
  12.  
  13.  
  14. if username == 'User1' and password == 'Abc123':
  15. print('Welcome')
  16.  
  17.  
  18. else:
  19.  
  20.  
  21. print('Incorrect information')
  22.  
  23. print('Please enter your username')
  24.  
  25. username = input()
  26.  
  27. if username == User 2':
  28.  
  29.  
  30.  
  31. print('Hello ' + username + ' please enter our password')
  32.  
  33.  
  34.  
  35. password = input()
  36.  
  37.  
  38.  
  39. if username == 'User 2' and password == 'Abc 321':
  40. print('Welcome')
  41.  
  42.  
  43. else:
  44. print('Incorrect information')
Add Comment
Please, Sign In to add comment