Question: Write a complete program that asks the user to enter a series of 5 numbers. The program should store the numbers in a list and
Write a complete program that asks the user to enter a series of 5 numbers. The program should store the numbers in a list and then display the following data:
The entire list
The lowest number in the list
The highest number in the list
The total of the numbers in the list
The average of the numbers in the list
Program execution examples:
>>> ============ RESTART: N:\cscd110\lists umber_list.py ============
Enter a number: 3
Enter a number: 2
Enter a number: 6
Enter a number: 4
Enter a number: 8
8 [ 3.0, 2.0, 6.0, 4.0, 8.0 ]
Low 2.0
Max . 8.0
Sum is 23.0
The average is 4.6
>>>
>>>
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
