mirror of
https://github.com/octocat/Hello-World.git
synced 2026-06-23 03:37:50 +00:00
6 lines
201 B
Python
6 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)
|