Python-Quizzes | Python List Quiz | Question 11
Find the output of the following program:
Python3
list = [ 1 , 2 , 3 , None , ( 1 , 2 , 3 , 4 , 5 ), [ 'Geeks' , 'for' , 'Geeks' ]] print ( len ( list )) |
(A)
12
(B)
11
(C)
6
(D)
22
Answer: (C)
Explanation:
The beauty of python list datatype is that within a list, a programmer can nest another list, a dictionary, or a tuple. Since in the code, there are 6 items present in the list the length of the list is 6.
Quiz of this Question
Please comment below if you find anything wrong in the above post
Please Login to comment...