Guest User

Untitled

a guest
Nov 8th, 2017
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. a="qwertyuiop"
  2. b="asdfghjkl"
  3. c="zxcvbnm"
  4. password=input("Enter Your Password").lower()
  5. for i in range(len(password)):
  6. t=password
  7. if t in a or t in b or t in c :
  8. print("Invalid Password")
  9. main()
  10.  
  11. if t not in a or t not in b or t not in c :
  12. print("Valid")
Add Comment
Please, Sign In to add comment