desislava_topuzakova

05. Password Guess

Oct 10th, 2020
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. #1. четене на парола (текст)
  2. # 2.проверка -> 's3cr3t!P@ssw0rd' (Welcome)
  3.  
  4. password = input()
  5.  
  6. if password == 's3cr3t!P@ssw0rd':
  7.     print('Welcome')
  8. else: #password != 's3cr3t!P@ssw0rd'
  9.     print("Wrong password!")
Add Comment
Please, Sign In to add comment