Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def passcreate(entrdpwd):
- print("What is the password you wish to set?")
- entrdpwd = input(">")
- passwordcheck()
- def passwordcheck():
- entrdpwd = passcreate(entrdpwd)
- print("Enter Password")
- pswdguess = input(">")
- if pswdguess == entrdpwd:
- print("Access Granted")
- database()
- elif pswdguess != entrdpwd:
- print("Access Denied")
- securitylock()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement