Question: Python Program You are developing an application package that will require a login and password. Design a form that will ask the user to input

Python Program You are developing an application package that will require a login and password. Design a form that will ask the user to input a login name and password. You then need to validate the login and password against the following criteria. Login name: 1. Has to be at least six characters long. 2. Can only contain only letters and numbers. Password: 1. Password has to be at least 8 characters long. 2. Has to have at least one number. 3. Has to have at least one special character: !, @,#,$,%,^,&,*,(,),_,+ Write two functions, one for validating the login name and another for validating the password. 1. The function for validating login name will be called IsValidLogin and will return a Boolean value of true if the login name is valid else it will return false. 2. The function for validating password will be called IsValidPassword and will return a Boolean value of true if the password is valid else it will return false. 3. Call these functions to validate login name and password

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!