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:
- The minimum value.
- The maximum value.
- The sum of all values.
- The average value.
You can use the template code to test your solution.



