A = [[2, 3, 1, 0], [3, 1, 0], [0, 2]] print(A[A[0][2]][2])
A = [[2, 3, 1, 0], [3, 1, 0], [0, 2]]
print(A[A[0][2]][2])
I understand that A[0] evaluates to [2, 3, 1, 0]. I don\'t understand how to eval