Python Boolean

From NovaOrdis Knowledge Base
Jump to navigation Jump to search

Internal

Overview

A boolean can be True or False.

x = True
type(x)
<class 'bool'>

What is True?

The following values evaluate to False in Python. Everything else evaluates to True.

  • boolean False
  • None
  • zero integer 0
  • zero float 0.0
  • empty string
  • empty list []
  • empty tuple ()
  • empty dict {}
  • empty set set()

Operators

OR: | and |=

assert (True | True)
assert (True | False)
assert (False | True)
assert not (False | False)
l = [True, False]
b = False
for e in l:
    b |= e
assert b

l = [False, False]
b = False
for e in l:
    b |= e
assert not b

Note that + applied to booleans contest to integers.