Question: python Write a program that creates a list to store numbers. Ask the user to input how many numbers they would like to store in

python python Write a program that creates a list to store numbers. Ask

Write a program that creates a list to store numbers. Ask the user to input how many numbers they would like to store in the list and then write a while loop to input the numbers. For e.g., if the user wants to input 5 numbers, then write a while loop that would run five times to input 5 numbers into the list. Print the list with the numbers. Using the list with the numbers, write a code that would display the unique numbers in the list. Hint: you will need to create a second list to store the unique numbers. A sample output is shown below: Sample Run How many numbers would you like to input? 5 Enter number: 44 Enter number: 31 Enter number: 9 Enter number: 44 Enter number: 97 The original list is: [44,31,9,44,97] The unique numbers are: [31,9,97] Rubrics: 1. Comments in your code: 5 points 2. Screenshot of your output: 5 points 3. User input for the numbers: 5 points 4. Correct Code for unique numbers: 35 points Deductions: 1. Not submitting a PDF document: 5 points 2. Illegible screenshot taken through phone, tablet, etc. 5 point 3. No code file (.py) =0 points

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!