Guest User

Untitled

a guest
Aug 17th, 2018
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. def asuser():
  2. username = input("Enter your username ")
  3. password = input("Enter your password ")
  4. if len(password) <= 15:
  5. print("this password must be 15 characters and above, please try again.")
  6. askuser()
  7. else:
  8. print("Access Granted:",username)
  9. askuser()
Add Comment
Please, Sign In to add comment