What truth value do objects evaluate to in Python?
Related Questions
- Boolean Value of Objects in Python: Discussion about overriding the way it is evaluated
|
|
What truth value do objects evaluate to in Python? Related Questions
|
|||
|
|
|
|
http://www.python.org/doc/2.5.2/lib/truth.html And as mentioned, you can override with custom objects by modifying nonzero. |
||||||
|
|
|
Update: Removed all duplicate infomation with Meder's post For custom objects in Python < 3.0 It is important to understand what is meant by evaluate. One meaning is when an object is explicitly casting to a bool or implicitly cast by its location (in a if or while loop). Another is == evalutation. 1==True, 0==False, nothing else is equal via ==.
Finally, for is, only True or False are themselves. |
|||
|