Average Of List Python Code Example
Example 1: average value of list elements in python
# Example to find average of list number_list = [45, 34, 10, 36, 12, 6, 80] avg = sum(number_list)/len(number_list) print("The average is ", round(avg,2))
Example 2: python average
# Using statistics package to find average import statistics as st my_list = [9, 3, 1, 5, 88, 22, 99] print(st.mean(my_list))
Comments
Post a Comment