Python Programming - Lists - Discussion

Discussion Forum : Lists - General Questions (Q.No. 34)
34.
How can you find the average of elements in a numeric list in Python?
average(list)
sum(list) / len(list)
mean(list)
list.average()
Answer: Option
Explanation:
The average of elements in a numeric list is calculated as the sum divided by the number of elements.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.