Python-Quizzes | Python List Quiz | Question 10
Question 10: Find the output of the following program:
list1 = [ 'physics' , 'chemistry' , 1997 , 2000 ] print (list1[ 1 ][ - 1 ]) |
(A) p
(B) y
(C) 7
(D) 2
Answer: (B)
Explanation: In python, we can slice a list but we can also slice an element within the list if it is a string. The declaration list[x][y] will mean that ‘x’ is the index of the element within a list and ‘y’ is the index of an entity within that string.
Quiz of this Question