CBSE Class 11 Computer Science Question 28 of 104

List Manipulation — Question 16

Back to all questions
16
Question

Question 16

What is the output of the following

l = [None] * 10
print(len(l))
  1. 10 ✓
  2. 0
  3. Syntax Error
  4. None
Answer