vote up 1 vote down star

Why does python 2.5.2 have the following behavior

>>>[2].extend([]) == [2]
False

>>> [2].extend([]) == None
True

$ python --version
Python 2.5.2

I assume I'm not understanding something here, but intuitively I'd think that [2].extend([]) should yield [2]

flag

70% accept rate
Who needs intuition when there is the interpreter? Just print [2].extend([]). – ΤΖΩΤΖΙΟΥ Feb 14 at 23:20

2 Answers

vote up 11 vote down check

Extend is a method of list, which modifies it but doesn't return self (returning None instead). If you need the modified value as the expression value, use +, as in [2]+[].

link|flag
vote up 4 vote down

Exactly.

>>> x = [2]
>>> x.extend([]) # Nothing is printed because the return value is None
>>> x == [2]
True
>>> x
[2]

They do this on purpose so that you will remember that the extend function is actually modifying the list in-place. Same with sort(). It always returns None.

link|flag

Your Answer

Get an OpenID
or

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