arithmetic_mean

This commit is contained in:
ayushbisht2001 2021-02-28 23:33:26 +05:30
parent 74045b64f0
commit 3b562a8507

View File

@ -21,7 +21,7 @@ def is_arithmetic_series(series: list) -> bool:
def arithmetic_mean(series: list) -> float:
"""
return the geometric mean of series
return the arithmetic mean of series
>>> arithmetic_mean([2, 4, 6])
4.0