Computer Science, asked by anmolvoltp784kl, 6 months ago

write a python program to validate password

Answers

Answered by usamamohd228
0

Answer:

Python program to check the validity of a Password

In this program, we will be taking a password as a combination of alphanumeric characters along with special characters, and check whether the password is valid or not with the help of few conditions.

Explanation:

Primary conditions for password validation :

(1)Minimum 8 characters.

(2)The alphabets must be between [a-z]

(3)At least one alphabet should be of Upper Case [A-Z]

(4)At least 1 number or digit between [0-9].

(5)At least 1 character from [ _ or @ or $ ].

Similar questions