Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
lst1 = ['one', 2, 3]

// What is the best way of the following  -- or is there another way?
lst2 = list(lst1)
lst2 = lst1[:]

import copy
lst2 = copy.copy(lst1)
share|improve this question

7 Answers

up vote 41 down vote accepted

If you want a shallow copy (elements aren't copied) use:

lst2=lst1[:]

If you want to make a deep copy then use the copy module:

import copy
lst2=copy.deepcopy(lst1)
share|improve this answer
What do you mean by elements aren't copied? – sheats Oct 8 '08 at 20:16
2  
If the elements are mutable objects they are passed by reference, you have to use deepcopy to really copy them. – Andrea Ambu Oct 8 '08 at 20:20
2  
It will only copy references that are held by the list. If an element in the list holds a reference to another object, that won't be copied. 9 times out of 10 you just need the shallow copy. – Jason Baker Oct 8 '08 at 20:22
@sheats see stackoverflow.com/questions/184710/… – David Locke Oct 8 '08 at 21:08
note: made the mistake of confusing lst2=lst1 as a shallow copy, it's just a ref. – Aram Kocharyan Sep 29 '12 at 13:40

I often use:

lst2 = lst1 * 1

If lst1 it contains other containers (like other lists) you should use deepcopy from the copy lib as shown by Mark.


UPDATE: Explaining deepcopy

>>> a = range(5)
>>> b = a*1
>>> a,b
([0, 1, 2, 3, 4], [0, 1, 2, 3, 4])
>>> a[2] = 55 
>>> a,b
([0, 1, 55, 3, 4], [0, 1, 2, 3, 4])

As you may see only a changed... I'll try now with a list of lists

>>> 
>>> a = [range(i,i+3) for i in range(3)]
>>> a
[[0, 1, 2], [1, 2, 3], [2, 3, 4]]
>>> b = a*1
>>> a,b
([[0, 1, 2], [1, 2, 3], [2, 3, 4]], [[0, 1, 2], [1, 2, 3], [2, 3, 4]])

Not so readable, let me print it with a for:

>>> for i in (a,b): print i   
[[0, 1, 2], [1, 2, 3], [2, 3, 4]]
[[0, 1, 2], [1, 2, 3], [2, 3, 4]]
>>> a[1].append('appended')
>>> for i in (a,b): print i

[[0, 1, 2], [1, 2, 3, 'appended'], [2, 3, 4]]
[[0, 1, 2], [1, 2, 3, 'appended'], [2, 3, 4]]

You see that? It appended to the b[1] too, so b[1] and a[1] are the very same object. Now try it with deepcopy

>>> from copy import deepcopy
>>> b = deepcopy(a)
>>> a[0].append('again...')
>>> for i in (a,b): print i

[[0, 1, 2, 'again...'], [1, 2, 3, 'appended'], [2, 3, 4]]
[[0, 1, 2], [1, 2, 3, 'appended'], [2, 3, 4]]
share|improve this answer
1  
copy() will not work in the last case, you need deepcopy() whenever you have a reference inside the object. – Aram Kocharyan Sep 29 '12 at 13:26

You can also do:

a = [1, 2, 3]
b = list(a)
share|improve this answer
Is the result a shallow or deep copy? – minty Oct 9 '08 at 18:49
That would be a deep copy. – Martin Cote Nov 14 '08 at 4:07
6  
No, using list() is definitely a shallow copy. Try it out. – Christian Oudard Sep 2 '09 at 13:03
Is there a speed difference? Arguably when you do [:], the library is smart enough to know that a copy is being made and thus it could potentially invoke some native C code to do so. With list(iterable) does it know/care that the iterable is already materialized and thus can be copied efficiently? – Hamish Grubijan Nov 8 '12 at 22:27

I like to do:

lst2 = list(lst1)

The advantage over lst1[:] is that the same idiom works for dicts:

dct2 = dict(dct1)
share|improve this answer
There was actually a pretty long discussion about the dictionary copy versus list copy on the Python 3K mailing list: mail.python.org/pipermail/python-3000/2008-February/… – Mark Roddy Oct 9 '08 at 16:31
The bit of info here is that for dictionaries, you can do d = d.copy() – Christian Oudard Sep 2 '09 at 13:04

You can also do this:

import copy
list2 = copy.copy(list1)

This should do the same thing as Mark Roddy's shallow copy.

share|improve this answer

In terms of performance, there is some overhead to calling list() versus slicing. So for short lists, lst2 = lst1[:] is about twice as fast as lst2 = list(lst1).

In most cases, this is probably outweighed by the fact that list() is more readable, but in tight loops this can be a valuable optimization.

share|improve this answer

Short lists, [:] is the best:

In [1]: l = range(10)

In [2]: %timeit list(l)
1000000 loops, best of 3: 477 ns per loop

In [3]: %timeit l[:]
1000000 loops, best of 3: 236 ns per loop

In [6]: %timeit copy(l)
1000000 loops, best of 3: 1.43 us per loop

For larger lists, they're all about the same:

In [7]: l = range(50000)

In [8]: %timeit list(l)
1000 loops, best of 3: 261 us per loop

In [9]: %timeit l[:]
1000 loops, best of 3: 261 us per loop

In [10]: %timeit copy(l)
1000 loops, best of 3: 248 us per loop

For very large lists (I tried 50MM), they're still about the same.

share|improve this answer
I wouldn't bother if I have to do a single copy in between 100s of lines of code. Only if it is a core part of the application and list copy is frequent, I might bother. – Saurabh Jun 11 at 6:13

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.