In the following statements of Python, which ones will result into the output: 6?
A = [[1, 2, 3],
[4, 5, 6],
[7, 8, 9]]
1) A[3][2]
2) A[2][3]
3) A[1][2]
4) A[2][1]