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?

link|improve this question

feedback

5 Answers

up vote 16 down vote accepted

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

link|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
1  
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
feedback

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.

link|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
feedback

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.

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

How about list1 + list2?

link|improve this answer
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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