Exam-style question
Try this first
In Python 3, what is the result of `False or True`?.
- A.False
- B.True
- C.0
- D.An error
Model answer
What a good answer should say
- True
Explanation
Why this works
OR produces True when at least one operand is True. The second operand is True.
Common mistake
No common mistake is linked to this question yet.
