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.

I have a list of lists

list_1 = [['good', 2, 2], ['bad', 2, 2], ['be', 1, 1], ['brown', 1, 3]]

I would like to add new element to the inner list by summing the two numbers. So my list should look like

list_1 = [['good', 2, 2, 4], ['bad', 2, 2, 4], ['be', 1, 1, 2], ['brown', 1, 2, 3]]

How do I add insert new element into list by adding a column? Thanks for your help!

share|improve this question

3 Answers

up vote 0 down vote accepted
list_1 = [['good', 2, 2], ['bad', 2, 2], ['be', 1, 1], ['brown', 1, 3]]
print(list_1)
for i in range(len(list_1)):
    list_1[i]+=[list_1[i][1]+list_1[i][2]]
print(list_1)
share|improve this answer
3  
No need for the counter i - better to iterate directly using in – Mark Oct 1 '11 at 20:41
Yeah, that's true, I hadn't thought of it. Sebastian's way is more efficient – Walkerneo Oct 1 '11 at 20:43
for lst in list_1:
    lst.append(lst[1]+lst[2])
share|improve this answer
This only gives the last list – Pradeep Oct 1 '11 at 20:41
1  
@agf, not with the first element of the array being a string – Walkerneo Oct 1 '11 at 20:42
@Walkerneo I meant lst.append(sum(lst[1:])) :) – agf Oct 1 '11 at 20:46
1  
@Pradeep: It modifies elements of the list list_1 inplace. The result is list_1, not lst. – J.F. Sebastian Oct 1 '11 at 20:46
True, but we're not playing code golf here, just trying to give someone something they can understand and use. – Walkerneo Oct 1 '11 at 20:47
show 1 more comment
  1. Iterate over your list of lists.
  2. For each list in your list of lists,
  3. Compute your new element, and append it to the list.
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.