up vote 12 down vote favorite
4
share [g+] share [fb]
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)
link|improve this question

feedback

6 Answers

up vote 31 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)
link|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
feedback

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]]

In this case it works with copy too, because there is only one deeper level, but if you have list of lists of list of... or other objects (i took lists just for simplicity) you need deepcopy.

link|improve this answer
feedback

You can also do:

a = [1, 2, 3]
b = list(a)
link|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
3  
No, using list() is definitely a shallow copy. Try it out. – Christian Oudard Sep 2 '09 at 13:03
feedback

I like to do:

lst2 = list(lst1)

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

dct2 = dict(dct1)
link|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
feedback

You can also do this:

import copy
list2 = copy.copy(list1)

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

link|improve this answer
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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