Calculating the mean of an empty list raises a `ZeroDivisionError` Code for reproduction: ```python l = [] mean(l) ``` This should be fixed.