python avg 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: average python

import numpy as np
values=[1,10,100]
print(np.mean(values))
values=[1,10,100,np.nan]
print(np.nanmean(values))

Example 3: 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 4: python average

def avrg(values): # where values is a list of all values
  return sum(values)/len(values)

Example 5: python avg

my_list = [1,2,3,4]

import numpy as np
print("mean = ", np.mean(my_list))

Example 6: 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]))