pages-mirror/src/calculate_average.py

6 lines
201 B
Python
Raw Normal View History

def calculate_average(values: list[float]) -> float:
"""Return the arithmetic mean of values, or 0 if the list is empty."""
if not values:
return 0
return sum(values) / len(values)