Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Introduction to nested lists
Iterating over nested lists
Modifying nested lists
Working with multiple lists
Summary
17. Quiz 1

Instruction

Let's take a look at Question 1!

Exercise

Create a function named count_stats(input_data), which accepts a 2-dimensional list with numerical elements and returns a tuple with the following three items:

(minimum list value, maximum list value, sum of all values)

You can use the sample data to test your function.