Lets say I have an array
a = [[[1, 2], [3, 4]],
[[5, 6], [7, 8]],
[[9, 10], [11, 12]],
[[13, 14], [15, 16]],
[[17, 18], [19, 20]]]
At the end I would like an array
b = [[[5, 6]],[[9, 10]]]
I thought that
b = a[1:3][0:1]
would work. But from that i get
b=[[[5, 6], [7, 8]]]