Boolean
Booleans are used to show the logical truth values True and False.
Constants
- True
- False
The following values are considered False: None, False, 0, 0L, 0.0, '', (), [], {}, set([])
Convert value to boolean
bool(x)
: convert x to True or False
Logical operations
and
: x and y, if x if false then x, else yor
: x or y, if x is false, then y, else xnot
: not x, if x is false, then True, else False
Example
print True # True
print 1 < 2 # True
print 2 > 3 # False
print 3 <= 3 # True
print 1 < 2 and 2 > 3 # False
print 1 < 2 or 2 > 3 # True
print not 1 < 2 # False
print bool(0) # False
print bool([]) # False
print bool(3) # True