10.6 Calculate average Create a module with the function calc_average() that has an integer list parameter and returns t
Posted: Sun May 15, 2022 8:05 am
10.6 Calculate average
Create a module with the function calc_average() that
has an integer list parameter and returns the average value of the
elements in the list as a float.
Ex: If the input list is:
then the returned average will be: ` 3.0 A test client
is provided for you.
Create a module with the function calc_average() that
has an integer list parameter and returns the average value of the
elements in the list as a float.
Ex: If the input list is:
then the returned average will be: ` 3.0 A test client
is provided for you.