Question: make a list with at least 10 integers in it 2. Print the list 3. Display a menu with the following options: 1) display


make a list with at least 10 integers in it 2. Print the list 3. Display a menu with the following options: 1) display the highest number in the list 2) display the lowest number in the list 3) display the total of all the numbers in the list 4) display the average of the numbers in the list 4. Ask the user for a number (1-4) 5. Display the corresponding option, based on the menu. If the user inputs something other than 1-4, print that it is an invalid option Outcome: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] --Menu- 1 - display the highest number in the list 2- display the lowest number in the list 3- display the total of all the numbers in the list 4 - display the average of the numbers in the list Enter your choice (1-4): 1 The highest number is: 10 Guidelines: Make a list of at least 10 integers Print the list Each menu option works (options 1-4 and an invalid option) python file includes comments, describing your work Display the menu Your python program runs without errors. Ask the user for a menu option. Your
Step by Step Solution
There are 3 Steps involved in it
Create a list of at least 10 integers numberlist 1 2 3 4 5 6 7 8 9 10 Print the list ... View full answer
Get step-by-step solutions from verified subject matter experts
