Exam-style question
Try this first
In Python 3, item = 12. What is the result of item < 12?.
- A.True
- B.False
- C.12
- D.An error
Model answer
What a good answer should say
- False
Explanation
Why this works
The value of item is equal to 12, not less than 12. Therefore, the relational expression evaluates to False.
Common mistake
No common mistake is linked to this question yet.
