0 votes
in Python by

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]

1 Answer

0 votes
by
3) A[1][2]

Related questions

0 votes
asked Oct 28, 2022 in Python by SakshiSharma
0 votes
asked Aug 22, 2022 in Python by Robindeniel
...