Question: 1. Create a password_Part1.py program to ask the user to input the First name, last name, email, and a password. Users should take care of

1. Create a password_Part1.py program to ask the user to input the First name, last name, email, and a password. Users should take care of the following rules mentioned below while entering the password. a. Password should be equal or greater than 10 characters. i. Hint : len() to check the length of the password b. Password should start with a letter. Only A-Z, a-z characters are allowed. i. Alpha = "ABCDEFabcdefgh" ii. Numbers = "0123456789" iii. Sp = "#_" iv. All = "ABCDEFabcdefgh0123456789#_" for loop/ while loop to iterate the password # let's say password is on pwd variable for p in pwd: If p in alpha
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
