Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 1.2 KB

File metadata and controls

32 lines (20 loc) · 1.2 KB

Password Validator

This program validates passwords to match specific rules. A valid password is one that conforms to the following rules:

  • Minimum length is 6;
  • Maximum length is 12;
  • Must not start with a number
  • Contains at least one uppercase letter and one lowercase letter
  • Contains at least one number;
  • Contains at least one special character (such as @,+,£,$,%,*^,etc);
  • Does not contain space(s).

Prerequisites

It requires no prerequisites, you only need to run the script. If you don't have Python installed, you can visit here to download Python.

How to run the script

Running the script is pretty easy, open a terminal in the folder where your script is located and run the following command :

python PASSWORD_VALIDATOR.py

Sample use of the script

alt text

alt text

alt text

Author's name

Tanimowo Emmanuel