Skip to content
Advertisement

Sort a list according to the ascending sort of the second list in python

I have two unsorted lists, x and y, as follows:

JavaScript

I would like to sort list y two times, one in ascending order and then in descending order. But, in each sorting of y, I need to sort also the corresponding elements of the list x accordingly. Both lists have the same length of items.

I tried with the following code, but it is not working as expected:

JavaScript

Expected output: in case of ascending order

JavaScript

Any help?

Advertisement

Answer

Just zip y and x – in this order, so that you can sort the resulting tuples in natural order, by their first item.

You can then sort, and zip again:

JavaScript

In reverse order:

JavaScript
Advertisement