Advertisement
KodingKid

Basic Python Password System

Mar 21st, 2021
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. input("Hello, to enter; please input your password.")
  2. password = "543210" #you can change this to anything you want
  3. if input == password:
  4.     print("Welcome!")
  5. if else:
  6.     print("There was an error with your login details, try again.")
  7.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement