Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a list of list that I want to append a constant value to each sublist of the full list, for instance:

_lst = [[1, 2], [3, 4], [5, 6]]

and I want to append 7 to each of the sublist so that _lst becomes:

[[1, 2, 7], [3, 4, 7], [5, 6, 7]]

Is there a good way to complete the job (such as using zip)? Thanks!

share|improve this question

3 Answers

up vote 10 down vote accepted
for l in _lst:
    l.append(7)
share|improve this answer
I personally prefer the explicitness of this answer. It also lends itself to further actions on l while it iterates. – Kirk Strauser Mar 4 at 4:35
Absolutely! :-) – Patricio Molina Mar 4 at 4:37
_lst = [ele + [7] for ele in _lst]
share|improve this answer
Thanks. Can zip help? – Rock Mar 4 at 4:31
@Rock, you don't need to use zip here, what do you want to do with zip? – Akavall Mar 4 at 4:33
Alright. sometimes I always suspect there is some magic way... – Rock Mar 4 at 4:34
Besides, this code creates a new list, leaving _lst unchanged. – Patricio Molina Mar 4 at 4:39
1  
You are right. I made a cosmetic change so my resulting list is called _lst, but I do create a new list and then just call it _lst, while you perform a change on the original list. – Akavall Mar 4 at 4:44
>>> tmp = [ i.append(7) for i in _lst ]
>>> print _lst
[[1, 2, 7], [3, 4, 7], [5, 6, 7]]
share|improve this answer
2  
While this'll work, using a listcomp for side effect purposes like this is usually disfavoured: it creates an intermediate list consisting of Nones and then throws it away. – DSM Mar 4 at 4:34

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.