programming Python MOC


Booleans are binary, either True or False.

Falsyness

Other data types can act as Booleans based on whether they are empty.

  • bool('Hi') -> True
  • bool('') -> False
  • bool(123) -> True
  • bool(0) -> False