Question: in python Write a program with a main and a sub function called checkPassword that checks whether a string is a valid password. The main
in python
Write a program with a main and a sub function called checkPassword that checks whether a string is a valid password. The main function should get the user input as a string. Define the function as def checkPassword(password). This function returns whether the password is valid or invalid. Use string methods. Password rules: The password must have at least eight characters. contain at least two digits. must contain at least one uppercase letter must contain at least one lowercase letter must contain at least one of [!,@,#,$,%,^,&,*,(,)] (non-letter and nonnumeric character) o Create a list for these special characters
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
