Tag view

#truthiness

Cross-subject tag search for related interview cards.

Clear

Results update as you type. Press / to jump straight into search.

Tagged with truthiness

1 card

Python Easy Theory

Truthy and falsy values in Python

Python treats certain values as false in conditionals, including `False`, `None`, zero values, and empty containers.

  • Empty collections are falsy
  • Most objects are truthy by default
  • Truthiness powers concise condition checks

Truthy and falsy values in Python