Vidyalelo
Python · Q76

Python Introduction and basic

Programming · Python · question 76

Q76

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][1]
B.
A[1][2]
Answer
C.
A[3][2]
D.
A[2][3]

Answer: Option B

Solution

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