vote up 1 vote down star

Is there a reason being list.append evaluating to false? Or is it just the C convention of returning 0 when successful that comes into play?

>>> u=[]
>>> not u.append(6)
True
flag

5 Answers

vote up 7 vote down check

Most Python methods that mutate a container in-place return None -- an application of the principle of Command-query separation. (Python's always reasonably pragmatic about things, so a few mutators do return a usable value when getting it otherwise would be expensive or a mess -- the pop method is a good example of this pragmatism -- but those are definitely the exception, not the rule, and there's no reason to make append an exception).

link|flag
I bumped into the issue while writing (y.append(5) and (yield y)) where I didn't expect a successful list addition to (indirectly) evaluate to false. – diciu Nov 5 at 18:56
vote up 1 vote down

Actually, it returns None


>>> print u.append(6)
None
>>> print not None
True
>>> 

link|flag
vote up 2 vote down

because .append method returns None, therefore not None evaluates to True. Python on error usually raises an error:

>>> a = ()
>>> a.append(5)
Traceback (most recent call last):
  File "<pyshell#1>", line 1, in <module>
    a.append(5)
AttributeError: 'tuple' object has no attribute 'append'
link|flag
Actually None evaluates to False, the OP is tricky and uses not. – Matthieu M. Nov 5 at 18:26
that was fixed before your comment :) – SilentGhost Nov 5 at 18:27
vote up 3 vote down

It modifies the list in-place, and returns None. None evaluates to false.

link|flag
vote up 11 vote down

None evaluates to False and in python a function that does not return anything is assumed to have returned None.

If you type:

>> print u.append(6)
None

Tadaaam :)

link|flag
2  
Mutators (like append, extend, sort, etc.) which update a list do not return a value. – S.Lott Nov 5 at 18:41

Your Answer

Get an OpenID
or

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