Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Let data = [[3,7,2],[1,4,5],[9,8,7]]

Let's say I want to sum the elements for the indices of each list in the list, like adding numbers in a matrix column to get a single list. I am assuming that all lists in data are equal in length.

    print foo(data)

   [[3,7,2],
    [1,4,5],
    [9,8,7]]
    _______
 >>>[13,19,14]

How can I iterate over the list of lists without getting an index out of range error? Maybe lambda? Thanks!

share|improve this question
What have you tried? – David Pärsson Dec 9 '12 at 0:15

4 Answers

up vote 11 down vote accepted

You could try this:

In [9]: l = [[3,7,2],[1,4,5],[9,8,7]]

In [10]: [sum(i) for i in zip(*l)]
Out[10]: [13, 19, 14]

This uses a combination of zip and * to unpack the list and then zip the items according to their index. You then use a list comprehension to iterate through the groups of similar indices, summing them and returning in their 'original' position.

To hopefully make it a bit more clear, here is what happens when you iterate through zip(*l):

In [13]: for i in zip(*l):
   ....:     print i
   ....:     
   ....:     
(3, 1, 9)
(7, 4, 8)
(2, 5, 7)
share|improve this answer
Very clear explanation and concise code. Thanks!! – Albert Dec 9 '12 at 0:26
@Albert No problem at all, good luck with everything! – RocketDonkey Dec 9 '12 at 0:27
Or map(sum,zip(*l)) (this one's my favorite). – A. R. S. Dec 9 '12 at 1:19
@A.R.S. That's definitely a nice one - there's something about map I've always liked :) – RocketDonkey Dec 9 '12 at 1:27

For any matrix (or other ambitious numerical) operations I would recommend looking into NumPy.

The sample for solving the sum of an array along the axis shown in your question would be:

>>> from numpy import array
>>> data = array([[3,7,2],
...     [1,4,5],
...     [9,8,7]])
>>> from numpy import sum
>>> sum(data, 0)
array([13, 19, 14])

Here's numpy's documentation for its sum function: http://docs.scipy.org/doc/numpy/reference/generated/numpy.sum.html#numpy.sum

Especially the second argument is interesting as it allows easily specify what should be summed up: all elements or only a specific axis of a potentially n-dimensional array(like).

share|improve this answer
Thanks for inquiring. I added a sample. I would think that this would be more time and space efficient than any of the other samples. – Theuni Dec 9 '12 at 0:31
Very cool (and easier syntax to digest than mine :) ). – RocketDonkey Dec 9 '12 at 0:34
Appreciated - especially given that I never used Numpy before, but I know some guys who do scientific computing and use it extensively. I was surprised myself how easy this was. – Theuni Dec 9 '12 at 0:38
So true - I've never used it, but this your answer is a good reason to look deeper into it. Plus, a bunch of people I work with are very into R - I'm the lone Python supporter, so having some more knowledge of it may help more people see the light :) In any case, great answer! – RocketDonkey Dec 9 '12 at 0:42

This does depend on your assumption that all the inner lists (or rows) are of the same length, but it should do what you want:

sum_list = []

ncols = len(data[0])

for col in range(ncols):
    sum_list.append(sum(row[col] for row in data))


sum_list
Out[9]: [13, 19, 14]
share|improve this answer
>>> data = [[1, 2, 3], [1, 2, 3], [1, 2, 3]]
>>> for column in enumerate(data[0]):
...     count = sum([x[column[0]] for x in data])
...     print 'Column %s: %d' % (column[0], count)
... 
Column 0: 3
Column 1: 6
Column 2: 9
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.