access to specific column array numpy

27

second_and_third_column = an_array[:, 1:3]
>>> test[:,0]
array([1, 3, 5])

Comments

Submit
0 Comments