I want to basically do this:
data = np.arange(25).reshape(5, 5)
print(data)
>> [[ 0 1 2 3 4]
[ 5 6 7 8 9]
[10 11 12 13 14]
[15 16 17 18 19]
[20 21 22 23 24]]
Then it would cut it somehow, and I would end up with this
[[6 7 8]
[11 12 13]
[16 17 18]]
I tried using colons but I have no idea how they work, (like data = data(1:3, 4:5))
alist[1:10].