标签: python numpy
我想将A变成B:
A = [0, 4, 1, 3, 2] B = [0, 2, 4, 3, 1]
B表示将A的值转换为索引,并将A的索引转换为值。如何使用numpy数组A快速完成此操作?