Q. Which of the following Python statements will result in the output: 6?
Code:
A = [[1, 2, 3],
[4, 5, 6],
[7, 8, 9]]
β
Correct Answer: (B)
A[1][2]
A = [[1, 2, 3],
[4, 5, 6],
[7, 8, 9]]
You must be Logged in to update hint/solution