Accès à un tableau de colonne spécifique Numpy
second_and_third_column = an_array[:, 1:3]
Difficult Dormouse
second_and_third_column = an_array[:, 1:3]
>>> test[:,0]
array([1, 3, 5])