I have an array
a=[0, 10, 20, 30, 40, 50, 60]
I selected the 2nd and 3rd element with
a[[1,2]]
obtaining
array([10, 20])
How do I select the other elements of a
except the elements I've already selected?
That is, I want to obtain:
array([0, 30, 40, 50, 60])
Logically, should be something like
a[![1,2]]