What will be the output of the following Python code?
A = [[1, 2, 3],
[4, 5, 6],
[7, 8, 9]]
A[1]
A = [[1, 2, 3],
[4, 5, 6],
[7, 8, 9]]
A[1]
A. [4, 5, 6]
B. [3, 6, 9]
C. [1, 4, 7]
D. [1, 2, 3]
Answer: Option A
Join The Discussion