If i have a list of numbers [4,2,5,1,3]
I want to sort it first by some function f
and then for numbers with the same value of f
i want it to be sorted by the magnitude of the number.
This code does not seem to be working.
list5 = sorted(list5)
list5 = sorted(list5, key = lambda vertex: degree(vertex))
Secondary sorting first: list5 is sorted based on magnitude. Primary sorting next: list5 is sorted based on some function of the numbers.