Supposons que j'ai un tableau numpy x = [5, 2, 3, 1, 4, 5]
, y = ['f', 'o', 'o', 'b', 'a', 'r']
. Je souhaite sélectionner les éléments en y
correspondant aux éléments en x
supérieurs à 1 et inférieurs à 5.
j'ai essayé
x = array([5, 2, 3, 1, 4, 5])
y = array(['f','o','o','b','a','r'])
output = y[x > 1 & x < 5] # desired output is ['o','o','a']
mais ça ne marche pas. Comment je ferais ça?