Exam-style question
Try this first
In Python 3, what is the result of `not False`?.
- A.False
- B.True
- C.0
- D.None
Model answer
What a good answer should say
- True
Explanation
Why this works
The NOT operation reverses a Boolean value. NOT False is True.
Common mistake
No common mistake is linked to this question yet.
