• Save
  • Run All Cells
  • Clear All Output
  • Runtime
  • Download
  • Difficulty Rating

Loading Runtime

Create a function called mean_list.

This function will be passed a list of numbers and should return the mean (or average) of the list.


Example:

mean_list([3,7,5,8,9,4,4,7])

Returns: 5.875

Reset Code