निम्न Python code का output क्या होगा?
What will be the output of the following Python code?
L = [None] * 10
print(len(L)) A
1
B
10
C
0
D
None
Explanation
Correct Answer: B) 10