Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sum a list of numbers in Python

Tags:

python

list

sum

I have a list of numbers such as [1,2,3,4,5...], and I want to calculate (1+2)/2 and for the second, (2+3)/2 and the third, (3+4)/2, and so on. How can I do that?

I would like to sum the first number with the second and divide it by 2, then sum the second with the third and divide by 2, and so on.

Also, how can I sum a list of numbers?

a = [1, 2, 3, 4, 5, ...] 

Is it:

b = sum(a) print b 

to get one number?

This doesn't work for me.

like image 832
layo Avatar asked Dec 06 '10 02:12

layo


People also ask

Can I sum a list in Python?

Python's built-in function sum() is an efficient and Pythonic way to sum a list of numeric values.

How do you find the sum of a group of numbers in Python?

To find a sum of the tuple in Python, use the sum() method. Define a tuple with number values and pass the tuple as a parameter to the sum() function; in return, you will get the sum of tuple items.


2 Answers

Question 1: So you want (element 0 + element 1) / 2, (element 1 + element 2) / 2, ... etc.

We make two lists: one of every element except the first, and one of every element except the last. Then the averages we want are the averages of each pair taken from the two lists. We use zip to take pairs from two lists.

I assume you want to see decimals in the result, even though your input values are integers. By default, Python does integer division: it discards the remainder. To divide things through all the way, we need to use floating-point numbers. Fortunately, dividing an int by a float will produce a float, so we just use 2.0 for our divisor instead of 2.

Thus:

averages = [(x + y) / 2.0 for (x, y) in zip(my_list[:-1], my_list[1:])] 

Question 2:

That use of sum should work fine. The following works:

a = range(10) # [0,1,2,3,4,5,6,7,8,9] b = sum(a) print b # Prints 45 

Also, you don't need to assign everything to a variable at every step along the way. print sum(a) works just fine.

You will have to be more specific about exactly what you wrote and how it isn't working.

like image 127
Karl Knechtel Avatar answered Oct 11 '22 11:10

Karl Knechtel


Sum list of numbers:

sum(list_of_nums) 

Calculating half of n and n - 1 (if I have the pattern correct), using a list comprehension:

[(x + (x - 1)) / 2 for x in list_of_nums] 

Sum adjacent elements, e.g. ((1 + 2) / 2) + ((2 + 3) / 2) + ... using reduce and lambdas

reduce(lambda x, y: (x + y) / 2, list_of_nums) 
like image 23
Rafe Kettler Avatar answered Oct 11 '22 12:10

Rafe Kettler