Exam-style question
Try this first
Which Python expression constructs an empty list?.
- A.{}
- B.()
- C.[]
- D.empty
Model answer
What a good answer should say
Use the explanation below to check the main marking points for this question.
Explanation
Why this works
In Python, [] represents a list containing no elements.
Common mistake
No common mistake is linked to this question yet.
