Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

ok, noob question

I had this code

           list = ['random', 'set', 'of', 'strings']
           for item in list:
               item.replace('a','b')

           print list

the output doesn't show the replacement unless I change the code to this

            list = ['random', 'set', 'of', 'strings']
            for item in list:
                item = item.replace('a','b')

            print list

so my question is what exactly is going on? why doesn't the first example automatically assign?

share|improve this question

3 Answers

up vote 5 down vote accepted

The method is simply returning the new value, it does not modify the existing one.

There is no set rules that specify that all or no methods will do this, you will have to check the documentation for each one to know specifically what it does and what to expect.

Lots of functions are like that.

Take this:

a = 1
b = 2
c = Add(a, b)

would you expect a or b to have new values at this point? This is the same exact thing.

Now, having said that, there is another problem with your code. Under no circumstances will that list actually change.

Why? Because you're not updating the list, you're updating item.

And item is a "copy" of the value in the list. This is not strictly correct, but it suffices for this answer (learn about references for more information.)

In other words, if you change your two examples to this:

list = ['random', 'set', 'of', 'string']
for item in list:
    item.replace('a','b')
    print item

vs.

list = ['random', 'set', 'of', 'string']
for item in list:
    item = item.replace('a','b')
    print item

then you will see a difference.

Answer to follow-up question in comment: If you do not store the result anywhere, it is simply lost. Think of it this way: You call up your friend and ask what time it is on his watch. He says "10:45", and you respond with "actually I don't care click."

share|improve this answer
but where is it returning it to in this case? – Timtam Jul 31 '11 at 22:22
i see your point about the list not being changed, but again I ask, where is the function returning the value to in the first case? – Timtam Jul 31 '11 at 22:26
refresh the page. – Lasse V. Karlsen Jul 31 '11 at 22:27
1  
No, there's plenty of uses for this, there's lots of methods that have side-effects and also returns something you may or may not care about. Besides, if the only thing you had to do to fix the problem was to introduce a dummy variable you wouldn't use anyway, what's the point in having the variable at all? – Lasse V. Karlsen Jul 31 '11 at 22:30
1  
Either way you're going to find it is normal everywhere, so better to just accept it (that is, accept the fact that is is legal and normal, not necessarily "accept my answer") than fight it. – Lasse V. Karlsen Jul 31 '11 at 22:38
show 5 more comments

The second is also wrong

list = [item.replace('a','b') for item in list]
share|improve this answer
how is this different? – Timtam Jul 31 '11 at 22:23
ahhh.... I get it... this is much better than what I was doing before... thanks – Timtam Jul 31 '11 at 22:27
list = ['random', 'set', 'of', 'strings']
for item in list:
    item.replace('a','b')
print list

'random' is a string object, 'set' is a string object, etc

list is a collection of string objects

for item in list:
assigns the name (aka identifier) item successively to each of the objects listed by object list. Assigning means that a binding between the name and the object is created.

For each turn of the loop, after the assignement of item to the current object of list, item.replace('a','b') is executed:
replace() creates a new object having the same value as the object named item but with 'a' replaced with 'b'.
Where does this creation occur ? In the memory. The new object is physically created somewhere in the RAM, an object has an adress, a type and a value.
And then ? Well, and then, nothing. The object is there, in the RAM, and it doesnt get any assignement of a name. So it will die more or less rapidly, that is to say that the bits occupied by the new object will be reused more or less rapidly, without any care of the interpreter because it has no possibility to know that there is an object there, since this object isn't referenced by an identifier.

.

list = ['random', 'set', 'of', 'strings']
for item in list:
    item = item.replace('a','b')
print list

It happens roughly the same. The difference is that after being created, the object resulting from the instruction item.replace('a','b') is assigned to the name item. Or if you prefer, the name item is re-assigned to the new object.
So, the new object won't die ? Alas, it will. Because at the next turn of the loop, the instruction for item in list performs a new assignement of name item to the next element of list

.

Now you should also understand why it is a bad practice to call a list with the name list. Because list is the name of a built-in function , and defining list = ['random', 'set', 'of', 'strings'] has a consequence: the original built-in binding between the name list and the object function list() is broken and replaced with a binding between list and the above collection of strings.

share|improve this answer
that is good to know thanks! – Timtam Aug 1 '11 at 0:26
@Timtam I consider the data model of Python (no variables, only object referenced by pointers binded to identifiers) as the top essential number 1 thing to know in Python. In fact , binding of names to objects is done by Python through a direct binding of a name to a pointer that holds an address pointing to the object. The binding between name and object is in reality indirect. That's the execution model that performs the localization of an object by reading the address in the pointer, given the binding between the name and the pointer – eyquem Aug 1 '11 at 0:45
@Timtam By the way, I wrote "a pointer that holds an address" : this sounds as if a pointer is a variable in the sense 'chunk of memory whose content can change'. In fact , I think that the underlying pointers used by Python ARE effectively variables in this sense. But they can't be directly modified. Their values change only when assignements are performed. – eyquem Aug 1 '11 at 0:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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