Python-Quizzes | Python List Quiz | Question 11
Question 11: Find the output of the following program:
list = [ 1 , 2 , 3 , None , ( 1 , 2 , 3 , 4 , 5 ), [ 'Geeks' , 'for' , 'Geeks' ]] print ( len ( list )) |
chevron_right
filter_none
(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