Start networking and exchanging professional insights

Register now or log in to join your professional community.

Follow

I can't seem to find the average value of a list in python. Any idea how?

user-image
Question added by Yasmeen Husam , Web Developer , Al Fahid Systems
Date Posted: 2018/09/24
Muhammad Irfan
by Muhammad Irfan , Level II Enterprise Services Engineer , Machsol,Inc

Let  L1 is your List containt numerical value, so we have function to add the all value of list by sum(L1) and len(L1) is used to find number item in list so the average value can be save in variable Avg as

avg=sum(L10/len(L1).

 

                   

Excuse me     I have not studied Python yet

Hussein Kamal
by Hussein Kamal , Android Applications Developer , OtherLogic

I think solution like:

l = [15, 18, 2, 36, 12, 78, 5, 6, 9]sum(l)/len(l)you get sum by for loop all list items and get lengthby length len(l)

Vaibhav B
by Vaibhav B , ERP Developer , Cleanco Services

List=[1,2,3,4,5]

avg =sum(List)/len(List)

Bekhouche Liamine
by Bekhouche Liamine , Assistant Director of IT Departement , Algeria Post

it's simple , just use a for loop to sum the value of the liste , then devide it by the length of the list 

example : p = {5,6,7},   here len(p) =3

the code :

sum = 0

avg = 0

for x in p :

      sum = sum +x

avg = sum / len(p)  , you will get the average 6

hope i answered ur question 

 

 

Deleted user
by Deleted user

The simplest is to import the mean function from numpy. Example of code:

 

from numpy import mean

l = [1, 3, 5, 7, 9] # l is the list

print(mean(l)) # if it using python3 else if using python2: print mean(l)

Allan Crispulo Vallarta
by Allan Crispulo Vallarta , Intern , Solutions Resource

Hi Manish,

Looking at the problem I think you may have set the list with 7 items.

If I use 8 as the length of the list I will have a syntax error because you have a missng item in the list ex. [4,5,1,2,9,7,,8] .

I used this list [4,5,1,2,9,7,8] with 7 items only.

this is my code.

 

 

list = [4,5,1,2,9,7,8] num = 0 for item in list: num+=item print(int(num / len(list)))

Ahmed Zaki
by Ahmed Zaki , Academic Member , Modern Generation student activity

First, You can use the function "reduce" to get the sum of the list then divide with the length of this list here is an example:

l = [1,2,3,4,6,9]print reduce(lamda x, y: x+y, l) / len(l)

Mohamed Said Ibrahim
by Mohamed Said Ibrahim , software quality control engineer , National Technology

we can not apply any functions on list as it it, but if we convert list into numpy we can.the steps

1.write pip3 install numpy in terminal

2.write import numpy as np on console

3.write np.mean(your list name)

 

MANISH SHARMA
by MANISH SHARMA , Data Scientist , Decision Minds

Input : [4,5,1,2,9,7,,8]

Output : Average of the list =5.

 

Explanation:

Sum of the elements is4+5+1+2+9+7++8 =

and total number of elements is8.

So average is /8 =5.

 

Input : [,9,,,,,,]

Output : Average of the list =.

 

Explanation:

Sum of the elements is+9++++++ =

and total number of elements is8.

So average is /8 =.

 

Source - Let me know if this clears your doubt. 

 

For more detail please refer geeksforgeeks

More Questions Like This

Do you need help in adding the right keywords to your CV? Let our CV writing experts help you.