Guest User

Untitled

a guest
Jun 3rd, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. x = input("Enter a username:")
  2. y = input("Enter a password:")
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9. if len(y)<6:
  10. print ("Invalid password")
  11.  
  12. elif x == y:
  13. print ("Invalid password")
  14.  
  15. elif y.islower() == True:
  16. print ("Invalid password")
  17.  
  18. elif y.upper() == True:
  19. print ("Invalid password")
  20.  
  21. elif y.isdigit() == True:
  22. print ("Invalid password")
  23.  
  24. else:
  25. print ("Valid Password.")
Add Comment
Please, Sign In to add comment