Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Introduction
Built-in Functions Common to Most Data Structures
Summary
13. Question 1

Instruction

Get ready for Question 1!

Exercise

Write a function named get_statistics(numerical_list) that accepts a list of numbers and returns a tuple with four elements:

  1. The minimum value.
  2. The maximum value.
  3. The sum of all values.
  4. The average value.

You can use the template code to test your solution.