DerioFT

Password Checker

Aug 18th, 2020
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. print("Welcome to System")
  2. password = "adjswj2^7"
  3.  
  4. user_input = input("Enter Your Password: ")
  5.  
  6. while user_input != password:
  7.     print("Wrong Password, Try Again!")
  8.     user_input = input("Enter Your Password: ")
  9. else:
  10.     print("Welcome ....")
  11.  
Add Comment
Please, Sign In to add comment