Exam-style question
Try this first
In Python 3, what is the result of `True and False`?.
- A.True
- B.False
- C.1
- D.An error
Model answer
What a good answer should say
- False
Explanation
Why this works
AND produces True only when both operands are True. Since one operand is False, the result is False.
Common mistake
No common mistake is linked to this question yet.
