So I just red here on Stackoverflow that you can select every Nth row and column of an array by doing:
image[0::N, 0::N]
which made me wonder since "normal" indexing is done by:
image[x][y]
Please explain why in the first example it is done via a comma between the indexes and in the second example by two separate brackets?
The array image is created via:
image = skipy.misc.imread('image.png', flatten=True)
I'd also appreciate a link to a page where I can inform myself further on this