Skip to content

Latest commit

 

History

History

password-validator

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Validating Password taking input from user

Validate the Password based on the following rules for checking strong passwords-

Validation Rules :

  • At least 1 letter between [a-z] and 1 letter between [A-Z].
  • At least 1 number between [0-9].
  • At least 1 character from [$#@].
  • Minimum length 6 characters.
  • Maximum length 16 characters.

Modules used

  • re

How to Use

python PasswordValidation.py