a=[1,2,5,9,7,3]a=np.array(a)order = a.argsort() # 从小到大排序,并返回索引值print('order=',order)order1= a.argsort()[::-1] # 从大到小排序,并返回索引值
print('order1=',order1)