vote up 11 vote down star
2

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?

flag

Just to make it clear - DO NOT USE TYPE NAMES AS VARIABLE NAMES! This is evil, and can give you few hours of fun. And use newList = list(aList) if you like to obtain a shallow copy of some list. This is more sound than aList[:] – Abgan Dec 29 '08 at 23:56

4 Answers

vote up 19 vote down check

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.

link|flag
Wow.. didn't know this. Very interesting. – bernhardrusch Nov 27 '08 at 14:46
1  
As mentioned in other answers, this is called a "shallow copy". – mikem Jul 23 at 10:10
vote up 3 vote down

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:

def myfunction(mylist=[]): 
    pass

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

link|flag
vote up 7 vote down

As it has already been answered, I'll simply add a simple demonstration:

>>> a = [1, 2, 3, 4]
>>> b = a
>>> c = a[:]
>>> b[2] = 10
>>> c[3] = 20
>>> a
[1, 2, 10, 4]
>>> b
[1, 2, 10, 4]
>>> c
[1, 2, 3, 20]
link|flag
vote up 22 vote down

[:] Shallow copies the list, making a copy of the list structure containing references to the original list members. This means that operations on the copy do not affect the structure of the original. However, if you do something to the list members, both lists still refer to them, so the updates will show up if the members are accessed through the original.

A Deep Copy would make copies of all the list members as well.

link|flag
This is the better, more complete answer. – Brian C. Lane Nov 27 '08 at 16:40

Your Answer

Get an OpenID
or

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