To sort two lists in parallel, what's the way of sorting by one list first, then for elements with the same value, sorting by the second list? Either list could have duplicated elements.
list_a = [3,2,4,4,5]
list_b = ['d','b','a','c','b']
The output needs to be based on (1) the value from list_a from the largest to the smallest, and (2) for elements with the same value in list_a, sort by alphabetical order in list_b.
list_a = [5,4,4,3,2]
list_b = ['b','a','c','d','b']
Any ideas?