Exam-style question
Try this first
In Python 3, what is the result of "comp" + "uter"?.
- A.comp uter
- B.computer
- C.comp+uter
- D.5
Model answer
What a good answer should say
- computer
Explanation
Why this works
The + operator concatenates, or joins, the two strings. No extra space is added.
Common mistake
No common mistake is linked to this question yet.
