Advertisement
Guest User

login.py

a guest
Jul 12th, 2017
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. username = raw_input("Username:")
  2. password = raw_input("Password:")
  3. if password == "CHANGE" and username == "CHANGE":
  4.     print "Logged in as CHANGE"
  5.  
  6. else:
  7.     print "Incorrect Password. Please try again."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement