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)
|
1
|
|
||
|
|
|
|
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 like to do:
The advantage over lst1[:] is that the same idiom works for dicts:
|
||||
|
|
|
You can also do:
|
||||||
|
|
|
You can also do this:
This should do the same thing as Mark Roddy's shallow copy. |
||
|
|
|
|
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
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. |
|||
|
|
