QuestenaPractice that shows what to review next
Question 50

For truth testing in Python conditionals, which values are falsy? Select all that apply.

  1. `0`Correct answer
  2. `"0"`
  3. `[]`Correct answer
  4. `[0]`

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.

Continue with this test

Start practice
Question 50: For truth testing in Python conditionals, which values are… · Python Fundamentals · Questena