| CARVIEW |
Select Language
HTTP/2 200
server: nginx
content-type: text/html
last-modified: Thu, 14 Feb 2019 11:45:55 GMT
etag: "5c6554f3-1ae2"
x-clacks-overhead: GNU Terry Pratchett
strict-transport-security: max-age=315360000; includeSubDomains; preload
content-encoding: gzip
via: 1.1 varnish, 1.1 varnish
accept-ranges: bytes
age: 295775
date: Fri, 16 Jan 2026 19:20:47 GMT
x-served-by: cache-lga21941-LGA, cache-bom-vanm7210039-BOM
x-cache: HIT, HIT
x-cache-hits: 22, 0
x-timer: S1768591248.783418,VS0,VE1
vary: Accept-Encoding
content-length: 1825
3.1 Truth Value Testing
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:
NoneFalse- 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.3.1
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.3.1
- Additional information on these special methods may be found in the Python Reference Manual.