Q. In the following statements of Python, which ones will result into the output: 6?
Code:
A = [[1, 2, 3],
[4, 5, 6],
[7, 8, 9]]
β
Correct Answer: (C)
A[1][2]