I occasionally see the list slice syntax used in Python code like this:
newList = oldList[:]
Surely this is just the same as:
newList = oldList
Or am I missing something?
|
I occasionally see the list slice syntax used in Python code like this:
Surely this is just the same as:
Or am I missing something? |
|||||||||
|
|
Like NXC said, Python variable names actually point to an object, and not a specific spot in memory.
However, when you do |
|||||||
|
|
A Deep Copy would make copies of all the list members as well. The code snippet below shows a shallow copy in action.
Running it in a python shell gives the following transcript. We can see the list being made with copies of the old objects. One of the objects can have its state updated by reference through the old list, and the updates can be seen when the object is accessed through the old list. Finally, changing a reference in the new list can be seen to not reflect in the old list, as the new list is now referring to a different object.
|
|||||||
|
|
As it has already been answered, I'll simply add a simple demonstration:
|
|||
|
|
|
Never think that 'a = b' in Python means 'copy b to a'. If there are variables on both sides, you can't really know that. Instead, think of it as 'give b the additional name a'. If b is an immutable object (like a number, tuple or a string), then yes, the effect is that you get a copy. But that's because when you deal with immutables (which maybe should have been called read only, unchangeable or WORM) you always get a copy, by definition. If b is a mutable, you always have to do something extra to be sure you have a true copy. Always. With lists, it's as simple as a slice: a = b[:]. Mutability is also the reason that this:
... doesn't quite do what you think it does. If you're from a C-background: what's left of the '=' is a pointer, always. All variables are pointers, always. If you put variables in a list: a = [b, c], you've put pointers to the values pointed to by b and c in a list pointed to by a. If you then set a[0] = d, the pointer in position 0 is now pointing to whatever d points to. See also the copy-module: http://docs.python.org/library/copy.html |
|||||
|
|
Shallow Copy: (copies chunks of memory from one location to another)
Deep Copy: (Copies object reference)
|
|||||
|