Guest User

Untitled

a guest
Oct 22nd, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. password = input("enter a password over 6 characters")
  2. count = 0
  3. for letter in password:
  4. count = count + 1
  5. while count < 6:
  6. password = input("password too short try again")
Add Comment
Please, Sign In to add comment