Computer Science

What is the output of the following

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

Python List Manipulation

19 Likes

Answer

10

Answered By

3 Likes


Related Questions