I am searching for a function that can apply position changes in a list to other lists. For example:
liste1 = [3, 4, 1]
liste2 = ['a', 'b', 'c']
liste1.sort() #so liste1 = [1,3,4]
if liste1 = [1,3,4] :
liste2 = ['c', 'a', 'b']
I can change positions of liste2
myself, but I have 270,000 values, which is why I am searching for a function that can do it.