Facebook
From Мишка, 1 Year ago, written in Plain Text.
This paste is a reply to Untitled from ivan - view diff
Embed
Download Paste or View Raw
Hits: 349
  1. user_input = input()
  2. result = ''
  3.  
  4. if user_input == "s3cr3t!P@ssw0rd":
  5.     result = 'Welcome'
  6. else:
  7.     result = 'Wrong password'
  8. print(result)