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

What is the syntax to insert one list into another list in python?

share|improve this question
7  
Ideally, your question body text should not be the same as the title. Also, your question should be a question. – SimpleCoder Sep 20 '10 at 0:45
Ideally, you'd provide code, also. – S.Lott Sep 20 '10 at 14:11
reverse listB, thence [listA.insert(pos,x) for x in [listB]] – John Mee Jun 14 '11 at 2:31
6  
I know some people hate these simple questions (the three downvotes and the fact that its closed), but they tend to be a great help for me. Search for "python append another list" in google. This page is the 2nd result. Then when I look at the answers, they address exactly what I was looking for: how to make sure I am extending a list with the elements of another list; as apposed to inserting a list as one element into another list. – Chris Dutrow Feb 22 '12 at 18:25
This is actually a great question because it asks in such a way that a new user who doesn't know about append() and extend() methods can learn what to learn next. It would be challenging to come up with the terms append and extend if you didn't already know them. – Ben Mordecai Jan 8 at 15:29

closed as not a real question by Glenn Maynard, aaronasterling, Alex Martelli, Jochen Ritzel, Roger Pate Sep 20 '10 at 3:20

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

up vote 26 down vote accepted

Do you mean append?

>>> x = [1,2,3]
>>> y = [4,5,6]
>>> x.append(y)
>>> x
[1, 2, 3, [4, 5, 6]]

Or merge?

>>> x = [1,2,3]
>>> y = [4,5,6]
>>> x + y
[1, 2, 3, 4, 5, 6]
>>> x.extend(y)
>>> x
[1, 2, 3, 4, 5, 6] 
share|improve this answer
foo = [1, 2, 3]
bar = [4, 5, 6]

foo.append(bar) --> [1, 2, 3, [4, 5, 6]]
foo.extend(bar) --> [1, 2, 3, 4, 5, 6]

http://docs.python.org/tutorial/datastructures.html

share|improve this answer

The question does not make clear what exactly you want to achieve.

List have append method, which appends its argument to the list:

>>> list_one = [1,2,3]
>>> list_two = [4,5,6]
>>> list_one.append(list_two)
>>> list_one
[1, 2, 3, [4, 5, 6]]

There's also extend method, which appends items from the list you pas as an argument:

>>> list_one = [1,2,3]
>>> list_two = [4,5,6]
>>> list_one.extend(list_two)
>>> list_one
[1, 2, 3, 4, 5, 6]

And of course, there's insert method which act similarly to append but allows you to specify the insertion point:

>>> list_one.insert(2, list_two)
>>> list_one
[1, 2, [4, 5, 6], 3, 4, 5, 6]
share|improve this answer
If you want to 'extend' to a specific insertion point, you can use list slicing syntax (see stackoverflow.com/a/7376026/1075152) – florisla Oct 18 '12 at 13:46

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