A good way to visualize a 2d array is as a list of lists. Something like this:
lst=[[1,2,3],[4,5,6],[7,8,9]]
here the outer list lst has three things in it. each of those things is another list:
The first one is: [1,2,3], the second one is: [4,5,6] and the third one is: [7,8,9]. You can access ...