# 以数组 a 的从小到大的顺序为基准,对数组b进行重排序,并返回排序结果的索引数import numpy as npa = np.array([0,1,3,2,6,4,5])b = np.array([0,1,2,3,4,5,6])index = np.lexsort((b, a))