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

20 Likes

Answer

10

Answered By

4 Likes


Related Questions