Vidyalelo
Python · Q47

Python Lists MCQs: Exam Practice for List Concepts

Programming · Python · question 47

Q47

Which of the following Python statements will result in the output: 6? A = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]

A.
A[2][3]
B.
A[2][1]
C.
A[1][2]
Answer
D.
A[3][2]

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board