What is the difference between the list methods append and extend?
|
|
From Dive into Python. |
|||||||||||
|
|
append:
gives you extend:
|
|||||
|
|
And in this context it can also be good to remember that strings are also iterable.
|
|||||
|
|
Good answers, but don't forget, any iterable will do for extend (not just list):
|
|||
|
|
|
Note that if you pass a list to append, it still adds one element:
|
|||
|
|
|
Like
as you can see, only |
||||
|
|
|
The following two snippets are semantically equivalent:
and
The latter may be faster as the loop is implemented in C. |
||||
|
from
you want
You may use
Back to our example, we can do
and get the wanted list. Here is how equivalently
|
|||
|
|
|
append(object) - Updates the list by adding an object to the list.
extend(list) - Essentially concatenates 2 lists.
|
||||
|
|
