Introduction

(Menu)   A   B   C   D   E   F   G   H   I

An average of a list of numbers is a 'middle' value.
The most well-known average is:
    'Add up the numbers and divide by the number of numbers.'
The correct mathematical name for this average is the mean.

Python does not provide a mean function
  but its easy to write the code to calculate it.