Exam-style question
Try this first
In Python 3, what is the result of the expression 8 == 8?.
- A.True
- B.False
- C.8
- D.An error
Model answer
What a good answer should say
- True
Explanation
Why this works
The == operator tests whether two values are equal. Both values are 8, so the result is True.
Common mistake
No common mistake is linked to this question yet.
