class Average: def from_list_of_floats(self, floats: list[float]) -> float: return sum(floats) / len(floats)