What is the syntax to insert one list into another list in python?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
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.
|
Do you mean append?
Or merge?
|
|||
|
|
|
|||
|
|
|
The question does not make clear what exactly you want to achieve. List have append method, which appends its argument to the list:
There's also extend method, which appends items from the list you pas as an argument:
And of course, there's insert method which act similarly to append but allows you to specify the insertion point:
|
|||
|


appendandextendif you didn't already know them. – Ben Mordecai Jan 8 at 15:29