I have an array like:
a = array([[1,2,3],[3,4,5],[4,5,6]])
What\'s the most efficient way to slice out a 1x2 array out of this that has onl
Is this what you're looking for?
a[:,1:]