mirror of
https://github.com/octocat/Hello-World.git
synced 2026-06-07 04:57:49 +00:00
5 lines
201 B
Python
5 lines
201 B
Python
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)
|