Advertisement
HristoBaychev

Password Guess

Jan 28th, 2023
5,630
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. password = str(input())
  2.  
  3. if password == 's3cr3t!P@ssw0rd':
  4.     print('Welcome')
  5. else:
  6.     print('Wrong password!')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement