EDIT: stupid logic of mine got ahead of me. The none are just the returns from the comprehension call. Ok, I'm running some tests in python, and I ran into a bit of a difference in execution orders, which leads me to an understanding of how it is implemented, but I'd like to run it by you fine people to see if I'm right or there is more to it. Consider this code:
>>> a = ["a","b","c","d","e"]
>>> def test(self,arg):
... print "testing %s" %(arg)
... a.pop()
...
>>>[test(elem) for elem in a]
testing a
testing b
testing c
[None, None, None]
>>> a
['a', 'b']
#now we try another syntax
>>> a = ["a","b","c","d","e"]
>>> for elem in a:
... print "elem is %s"%(elem)
... test(elem)
...
elem is a
testing a
elem is b
testing b
elem is c
testing c
>>> a
['a', 'b']
>>>
Now this tells me that the for elem in a: gets the next iteratable element then applies the body, whereas the comprehension somehow calls the function on each element of the list before actually executing the code in the function, so modifying the list from the function ( pop) leads to the ]none, none, none]
Is this right? what is happening here?
thanks
test()does not return anything, hence it returnsNone. (BTW, you should delete theselfparameter.) – Sven Marnach May 3 '11 at 14:46a==['a','b']afterwards. What is the difference??? – Ishtar May 3 '11 at 14:52