2.14 LAB: Warm up: Creating passwords (1) Prompt the user to enter two words and a number, storing each into separate va

Business, Finance, Economics, Accounting, Operations Management, Computer Science, Electrical Engineering, Mechanical Engineering, Civil Engineering, Chemical Engineering, Algebra, Precalculus, Statistics and Probabilty, Advanced Math, Physics, Chemistry, Biology, Nursing, Psychology, Certifications, Tests, Prep, and more.
Post Reply
answerhappygod
Site Admin
Posts: 899603
Joined: Mon Aug 02, 2021 8:13 am

2.14 LAB: Warm up: Creating passwords (1) Prompt the user to enter two words and a number, storing each into separate va

Post by answerhappygod »

2 14 Lab Warm Up Creating Passwords 1 Prompt The User To Enter Two Words And A Number Storing Each Into Separate Va 1
2 14 Lab Warm Up Creating Passwords 1 Prompt The User To Enter Two Words And A Number Storing Each Into Separate Va 1 (25.81 KiB) Viewed 39 times
2 14 Lab Warm Up Creating Passwords 1 Prompt The User To Enter Two Words And A Number Storing Each Into Separate Va 2
2 14 Lab Warm Up Creating Passwords 1 Prompt The User To Enter Two Words And A Number Storing Each Into Separate Va 2 (22.41 KiB) Viewed 39 times
2 14 Lab Warm Up Creating Passwords 1 Prompt The User To Enter Two Words And A Number Storing Each Into Separate Va 3
2 14 Lab Warm Up Creating Passwords 1 Prompt The User To Enter Two Words And A Number Storing Each Into Separate Va 3 (27.49 KiB) Viewed 39 times
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) Ex: If the input is: yellow Daisy 6 the output after the prompts is: You entered: yellow Daisy 6 Note: User input is not part of the program output. (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). Ex: If the input is yellow Daisy 6 the output after the prompts is:
(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). Ex: If the input is yellow Daisy 6 the output after the prompts is: You entered: yellow Daisy 6 First password: yellow Daisy Second password: 6yellow6 (3) Output the length of each password (the number of characters in the strings). (Submit for 2 points, so 5 points total). Ex: If the input is yellow Daisy 6 the output after the prompts is: You entered: yellow Daisy 6 First password: yellow Daday
You entered: yellow Daisy 6 First password: yellow Daisy Second password: 6yellow6 Number of characters in yellow Daisy: 12 Number of characters in 6yellow6: 8 LAB ACTIVITY 2.14.1: LAB: Warm up: Creating passwords main.py 1 # FIXME (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: \n") 4 5 6 # FIXME (2): Output two password options 7 password1 favorite color 8 print('\nFirst password: ') 9 10 11 # FIXME (3): Output the length of the two password options. 12 0/5 Load default template.... Run your program as often as you'd like, before submitting for grading. Below, type any needed i
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!
Post Reply