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
|
|
|
|
|
|
|
Most Python methods that mutate a container in-place return |
||
|
|
|
Actually, it returns
|
||
|
|
|
|
because
|
||||
|
|
|
It modifies the list in-place, and returns |
||
|
|
|
|
If you type:
Tadaaam :) |
||||
|