average fucntion python code example
Example 1: 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))
Example 2: calcutalte average python
# app.py
def averageOfList(num):
sumOfNumbers = 0
for t in num:
sumOfNumbers = sumOfNumbers + t
avg = sumOfNumbers / len(num)
return avg
print("The average of List is", averageOfList([19, 21, 46, 11, 18]))