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

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

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 Mathematics Questions!