Question: Create a Python program called cst - 1 5 0 - grid - list - py . The program should accept a two - dimensional

Create a Python program called cst-150-grid-list-py.
The program should accept a two-dimensional list as input.
Calculate and display the following statistics:
The lowest number in the list.
The highest number in the list.
The sum of numbers in the list.
The total number of elements in the list.
Use the provided sample run as a reference for the input prompts and expected output.
Sample Run:
test list: [[2,3,4],[1,-2,145],[3,-110,3]]
Output:
The minimum number in the list is -110
The maximum number in the list is 145
The are 9 total numbers in the list.
The sum of the numbers in the list is 49
Naming Convention: cst-150-grid-list-py

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 Programming Questions!