I'm learning how to work through 2-D arrays and am currently trying to figure out how to do this without the numPy import. A simple 1-D array could be sliced accordingly:
Array1 = [1, 2, 3, 4, 5, 6, 7, 8, 9]
Array[start:stop:step]
But what if the array were to be instead:
Array2 = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
I see that I can slice certain elements contained in the lists of the list like:
Array2[0][1]
2
However, what would be a possible method of slicing say elements 3, 4, 5, 6, 7, 9 (or whichever values) while they are still contained in their respective lists.