What basically the commas do in slicing nd array in NumPy?
E.g. for a 3d array, what do these mean?
a[1,2::] a[:2,3:] a[1:2,:]
I means commas in general, how do these thing work while slicing? I know about
a[start:stop:step]
but having hard time understanding what to commas imply.
Edit: I've read on few websites about slicing using tuple,that is what I don't understand. How does slicing with tuple work?