For truth testing in Python conditionals, which values are falsy? Select all that apply.
Explanation
Numeric zero and an empty list have false truth values, so a condition using either enters its false path. The strings `0` and a one-element list are nonempty and therefore truthy despite containing values that may look false-like.