For example I have following 2-D array.
>>>np.array(((1,2),(3,4),(5,6)))
>>>array([[1, 2],
[3, 4],
[5, 6]])
I want to get a element from each column. For example, I want to get 3 from 1st column, 6 from 2rd column.
How can do it with a indices[1,2]. 1 means 2rd element from 1st column, 2 means 3rd element from 2rd column