Exam-style question
Try this first
Given the dictionary {"grass": 1, "green": 2, "grows": 1, "the": 1}, which value is accessed by the key "green"?.
- A.1
- B.2
- C.3
- D.green
Model answer
What a good answer should say
- 2
Explanation
Why this works
The key "green" is associated with the value 2, so accessing that key returns 2.
Common mistake
No common mistake is linked to this question yet.
