ASPN ActiveState Programmer Network
  ActiveState
/ Home / Perl / PHP / Python / Tcl / XSLT /
/ Safari / My ASPN /
Cookbooks | Documentation | Mailing Lists | Modules | News Feeds | Products | User Groups | Web Services
SEARCH
advanced | search help

Reference
ActivePython 2.4
Python Documentation
Library Reference
2. Built-In Objects
2.3 Built-in Types
2.3.1 Truth Value Testing
2.3.2 Boolean Operations -- and, or, not
2.3.3 Comparisons
2.3.4 Numeric Types -- int, float, long, complex
2.3.5 Iterator Types
2.3.6 Sequence Types -- str, unicode, list, tuple, buffer, xrange
2.3.7 Set Types -- set, frozenset
2.3.8 Mapping Types -- classdict
2.3.9 File Objects
2.3.10 Other Built-in Types
2.3.11 Special Attributes

MyASPN >> Reference >> ActivePython 2.4 >> Python Documentation >> Library Reference >> 2. Built-In Objects >> 2.3 Built-in Types
ActivePython 2.4 documentation


2.3.1 Truth Value Testing

Any object can be tested for truth value, for use in an if or while condition or as operand of the Boolean operations below. The following values are considered false:

  • None

  • False

  • zero of any numeric type, for example, 0, 0L, 0.0, 0j.

  • any empty sequence, for example, '', (), [].

  • any empty mapping, for example, {}.

  • instances of user-defined classes, if the class defines a __nonzero__() or __len__() method, when that method returns the integer zero or bool value False.2.5

All other values are considered true -- so objects of many types are always true.

Operations and built-in functions that have a Boolean result always return 0 or False for false and 1 or True for true, unless otherwise stated. (Important exception: the Boolean operations "or" and "and" always return one of their operands.)



Footnotes

...False.2.5
Additional information on these special methods may be found in the Python Reference Manual.
See About this document... for information on suggesting changes.

Privacy Policy | Email Opt-out | Feedback | Syndication
© ActiveState 2004 All rights reserved