I notice that In [30]: np.mean([1, 2, 3]) Out[30]: 2.0 In [31]: np.average([1, 2, 3]) Out...
Want to improve this post? Provide detailed answers to this question, including citations and an explanation of why your answer is correct. Answers without enough detail may be edited...
I have to find the average of a list in Python. This is my code so far from functools import reduce l = [15, 18, 2, 36, 12, 78,...