about | help | code help+videos | done | prefs |
average
Write an average() function that has a numbers parameter. This function returns the statistical average of the list of integer numbers passed to the function. Avoid using Python's built-in sum(). average([1, 2, 3]) → 2 average([1, 2, 3, 1, 2, 3, 1, 2, 3]) → 2 average([12, 20, 37]) → 23 ...Save, Compile, Run (ctrl-enter) |
Progress graphs:
Your progress graph for this problem
Random user progress graph for this problem
Random Epic Progress Graph
Difficulty: 201 Post-solution available
Copyright Nick Parlante 2017 - privacy