so I have a list with tuples consisting out of a string with a value. I have sorted the list so the tuples are ordered with a descending order (from high to low). Now I want for the tuples with the same values that those tupples are sorted alphabetically. An example:
list = [(B,10),("A",10),("C",7),("E",5),("D",5)]
becomes
list =[("A",10),("B",10),("C",7),("D",5),("E",5)]
Thank you in advance