QuestenaPractice that shows what to review next
Question 57

In `a if condition else b`, which result expressions are evaluated?

  1. Both `a` and `b` before the condition
  2. Neither result expression; it returns the condition
  3. Always `a`, because the `else` part is optional
  4. Only `a` or `b`, whichever the condition selectsCorrect answer

Explanation

Python tests the condition and evaluates only the result expression selected by that truth value. Evaluating both `a` and `b` first would destroy the construct's lazy branch behavior and could trigger effects from an unselected path.

Continue with this test

Start practice
Question 57: In `a if condition else b`, which result expressions are… · Python Fundamentals · Questena