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)
|
|
||||
|
|
|
If you want a shallow copy (elements aren't copied) use:
If you want to make a deep copy then use the copy module:
|
|||||||||||||||
|
|
I often use:
If lst1 it contains other containers (like other lists) you should use deepcopy from the copy lib as shown by Mark. UPDATE: Explaining deepcopy
As you may see only a changed... I'll try now with a list of lists
Not so readable, let me print it with a for:
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
|
|||||
|
|
You can also do:
|
|||||||||||
|
|
I like to do:
The advantage over lst1[:] is that the same idiom works for dicts:
|
|||||
|
|
You can also do this:
This should do the same thing as Mark Roddy's shallow copy. |
|||
|
|
|
In terms of performance, there is some overhead to calling In most cases, this is probably outweighed by the fact that |
|||
|
|
|
Short lists, [:] is the best:
For larger lists, they're all about the same:
For very large lists (I tried 50MM), they're still about the same. |
|||
|