Answers for "python find the average of a list"

1

python find the average of a list

numbers = [3, 18, 2, 1, 70, 12, 36, 12, 78, 5, 6, 9]

import statistics

print(statistics.mean(numbers))
Posted by: Guest on November-08-2021

Code answers related to "python find the average of a list"

Python Answers by Framework

Browse Popular Code Answers by Language