Question: This needs to be in PYTHON language, if you could please explain your answer I would greatly appreciate it! Thanks in advance! 2.14 LAB: Warm
This needs to be in PYTHON language, if you could please explain your answer I would greatly appreciate it! Thanks in advance!

2.14 LAB: Warm up: Creating passwords (1) Prompt the user to enter two words and a number, storing each into separate variables. Then, output those three values on a single line separated by a space. (Submit for 1 point) Enter favorite color: yellow Enter pet's name: Daisy Enter a number: 6 You entered: yellow Daisy 6 (2) Output two passwords using a combination of the user input. Format the passwords as shown below. (Submit for 2 points, so 3 points total). Enter favorite color: yellow Enter pet's name: Daisy Enter a number: You entered: yellow Daisy 6 First password: yellow_Daisy Second password: @yellow (3) Output the length of each password (the number of characters in the strings). (Submit for 2 points, so 5 points total). Enter favorite color: yellow Enter pet's name: Daisy Enter a number: 6 You entered: yellow Daisy 6 First password: yellow_Daisy Second password: Eyellow Number of characters in yellow_Daisy: 12 Number of characters in @yellow6: 8 2477721721534 LAB ACTIVITY 2.14.1: LAB: Warm up: Creating passwords 0/5 main.py Load default template... 1 + FDE (1): Finish reading another word and an integer into variables. 2 Output all the values on a single line 3 favorite_color=input("Enter favorite color: ") 5 6 = FDOE (2): Output the password options 7 password = favorite_color 3 print(" First password:) 9 10 11 FD0E (3): Output the length of the two password options 12
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
