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?
| |||
|
feedback
|
|
Yes: | |||||||
feedback
|
|
you could always create a new list which is a result of adding two lists.
Lists are mutable sequences so I guess it makes sense to modify the original lists by extend or append. | |||
feedback
|
|
Depending on how you're going to use it once it's created
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
If your lists are large and efficiency is a concern then this and other methods from the Note that this example uses up the items in | ||||
|
feedback
|
|
Just to let you know: When you write | ||||
|
feedback
|