Python Program to check the Validity of Password - Python Application Programming Tutorial
Develop a python program to check the validity of a password. Password should contain at least, i) one lower case letter, ii) one digit, iii) one uppercase letter iv) one special character [$@#!] v) six characters long. The program should accept a password and check the validity of the password using the above criteria and print “Valid” and “Invalid” as the case may be.
Python Application Programming Tutorial
17CS664
18CS752
#PythonApplicationProgrammingTutorial
#ValidityofPassword
#CheckValidityofPassword