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.

In Python, the only way I can find to concatenate two lists is list.extend, which modifies the first list. Is there any concatenation function that returns its result without modifying its arguments?

share|improve this question
Wow, 20k views. I guess I unwittingly hit some good google search terms with this question! – Ryan Thompson Mar 19 at 0:47

6 Answers

up vote 85 down vote accepted

Yes: list1+list2. This gives a new list that is the concatenation of list1 and list2.

share|improve this answer
Well, that explains it. I was looking for a function name, not an operator (Yes, I know that operators are implemented by hidden functions.) – Ryan Thompson Dec 3 '10 at 19:07
5  
Actually you can do this by using the a non hidden function: import operator, operator.add(list1, list2) – e-satis Apr 13 '11 at 12:28

Depending on how you're going to use it once it's created itertools.chain might be your best bet:

>>> import itertools
>>> a = [1, 2, 3]
>>> b = [4, 5, 6]
>>> c = itertools.chain(a, b)

This creates a generator for the items in the combined list, which has the advantage that no new list needs to be created, but you can still use c as though it were the concatenation of the two lists:

>>> for i in c:
...     print i
1
2
3
4
5
6

If your lists are large and efficiency is a concern then this and other methods from the itertools module are very handy to know.

Note that this example uses up the items in c, so you'd need to reinitialise it before you can reuse it. Of course you can just use list(c) to create the full list, but that will create a new list in memory.

share|improve this answer
1  
just say that itertools.chain returns a generator... – Ant Dec 3 '10 at 12:47

you could always create a new list which is a result of adding two lists.

>>> k = [1,2,3] + [4,7,9]
>>> k
[1, 2, 3, 4, 7, 9]

Lists are mutable sequences so I guess it makes sense to modify the original lists by extend or append.

share|improve this answer
It only makes sense to modify the original lists if you don't need the unmodified lists any more, so in this case it wouldn't make sense. – Scott Griffiths Dec 3 '10 at 10:55

How about list1 + list2?

share|improve this answer

Just to let you know:

When you write list1 + list2, you are calling the __add__ method of list1, which returns a new list. in this way you can also deal with myobject + list1 by adding the __add__ method to your personal class.

share|improve this answer

how about list.extend()? So it could be list1.extend(list2)

share|improve this answer
That modifies list1. – Ryan Thompson May 2 at 23:58
This method is mentioned in the question and the OP specified that he did not want to modify the original list (which this method does). – dreamlax May 7 at 5:49

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.