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 difference between the list methods append and extend?

share|improve this question
5  
@Matthew Trevor: Python help didn't explain it clearly. The docs use both "extend" and "append" in the definition. It's confusing. "list.extend(L): Extend the list by appending all the items in the given list; equivalent to a[len(a):] = L". – trenton Sep 28 '11 at 17:23
by mistake I give an upvote to MatthewTrevor, but what I want was to flag his comment, as @trenton says, the python help didn't explain it clearly. – rob.alarcon Oct 9 '11 at 21:22

9 Answers

up vote 176 down vote accepted

append adds an element to a list, extend concatenates the first list with another list. (Or another iterable, it doesn't have to be a list.)

>>> li = ['a', 'b', 'mpilgrim', 'z', 'example']
>>> li
['a', 'b', 'mpilgrim', 'z', 'example']
>>> li.append("new")               
>>> li
['a', 'b', 'mpilgrim', 'z', 'example', 'new']
>>> li.insert(2, "new")            
>>> li
['a', 'b', 'new', 'mpilgrim', 'z', 'example', 'new']
>>> li.extend(["two", "elements"]) 
>>> li
['a', 'b', 'new', 'mpilgrim', 'z', 'example', 'new', 'two', 'elements']

From Dive into Python.

share|improve this answer
43  
Note, extend doesn't just concatenate lists, it extends a list with an arbitrary iterable. – Mike Graham Mar 19 '10 at 0:16
Important distinction by @MikeGraham here - a new list is not created. From python 2.7.3 docs: list.extend(L) Extend the list by appending all the items in the given list; equivalent to a[len(a):] = L. – Reed Sandberg Feb 14 at 19:34
2  
@Harley your example doesn't distinguish the difference between append and extend. @kender's does. – Rock Feb 15 at 19:31

append:

x = [1, 2, 3]
x.append([4, 5])
print (x)

gives you [1, 2, 3, [4, 5]]

extend:

x = [1, 2, 3]
x.extend([4, 5])
print (x)
[1, 2, 3, 4, 5]
share|improve this answer
1  
Actually the best answer, imo. – Bouncner Apr 17 at 18:22

And in this context it can also be good to remember that strings are also iterable.

>>> a = [1, 2]
>>> a
[1, 2]
>>> a.extend('hey')
>>> a
[1, 2, 'h', 'e', 'y']
share|improve this answer
12  
+1 Very good tip. As a beginner, you can easily get this wrong. – helpermethod Oct 25 '10 at 13:36

Good answers, but don't forget, any iterable will do for extend (not just list):

l.extend(xrange(5))
share|improve this answer

append appends a single element. extend appends a list of elements.

Note that if you pass a list to append, it still adds one element:

>>> a = [1, 2, 3]
>>> a.append([4, 5, 6])
>>> a
[1, 2, 3, [4, 5, 6]]
share|improve this answer

Like Ali A said, any iterable will do for the extend, here is an example for dictionary argument,

>>> li=[1,2,3]
>>> li.extend({4:5,6:7})
>>> li
[1, 2, 3, 4, 6]
>>>

as you can see, only keys are added to the list.

share|improve this answer

The following two snippets are semantically equivalent:

 for item in iterator:
     a_list.append(item)

and

a_list.extend(iterator)

The latter may be faster as the loop is implemented in C.

share|improve this answer
Just what I was looking for! – Ziggy Oct 10 '12 at 7:41
2  
Extending is ~4x faster on my machine than appending in a loop (16us vs 4us for 100 loops of zeros) – Alex L Dec 27 '12 at 8:29

extend() can be used with an iterator argument. Here is an example. You wish to make a list out of a list of lists this way:

from

list2d = [[1,2,3],[4,5,6], [7], [8,9]]

you want

>>> 
[1, 2, 3, 4, 5, 6, 7, 8, 9]

You may use itertools.chain.from_iterable() to do so. This method's output is an iterator. It's implementation is equivalent to

def from_iterable(iterables):
    # chain.from_iterable(['ABC', 'DEF']) --> A B C D E F
    for it in iterables:
        for element in it:
            yield element

Back to our example, we can do

import itertools
list2d = [[1,2,3],[4,5,6], [7], [8,9]]
merged = list(itertools.chain.from_iterable(list2d))

and get the wanted list.

Here is how equivalently extend() can be used with an iterator argument:

merged = []
merged.extend(itertools.chain.from_iterable(list2d))
print(merged)
>>> 
[1, 2, 3, 4, 5, 6, 7, 8, 9]
share|improve this answer

append(object) - Updates the list by adding an object to the list.

x = [20]
# list passed to the append(object) method is treated as a single object.
x.append([21,22,23]) 
#hence the resultant list length will be 2
print x 
--> [20, [21,22,23]]

extend(list) - Essentially concatenates 2 lists.

x = [20]
#the parameter passed to extend(list) method is treated as a list.
#eventually it is 2 list's being concatenated. 
x.extend([21,22,23])
#here the resultant list's length is 4
print x 
[20,21,22,23]
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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