I occasionally see a list slice like this used in Python code:
newList = list[:]
Surely this is just the same as:
newList = list
Or am I missing something?
|
2
|
I occasionally see a list slice like this used in Python code:
Surely this is just the same as: newList = list Or am I missing something?
|
|||
|
|
|
Like NXC said, Python variable names actually point to an object, and not a specific spot in memory. NewList = list would create two different variables that point to the same object, therefore, changing list would also change NewList. However, when you do newList = list[:], it "slices" the list, and creates a new list. The default values for [:] are 0 and the end of the list, so it copies everything. Therefore, it creates a new list with all the data contained in the first one, but both can be altered without changing the other. |
||||||
|
|
|
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 |
||
|
|
|
|
As it has already been answered, I'll simply add a simple demonstration:
|
||
|
|
|
|
A Deep Copy would make copies of all the list members as well. |
|||
|