I have a dictionary for example like {"abc": 3, "dcb": 4, "dab": 4, "dfb": 5}.
I would like to sort it by value and by keys, where the value is more important than the key.
So in our example we would get:
{"dfb" : 5, "dab" : 4, "dcb" : 4, "abc" : 3}
More preferably if it is presented as a list rather than dictionary.