最佳答案
假设我有一个数字数组 x = [5, 2, 3, 1, 4, 5]
,y = ['f', 'o', 'o', 'b', 'a', 'r']
。我想选择 y
中与 x
中大于1小于5的元素对应的元素。
我尽力了
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']
Def 下划线(N) :
但这不管用,我要怎么做?