Sort dict by highest value?
dictionary, list, python
Solution
sorted(myDict, key=myDict.get, reverse=True)
Problem
I've got a dict with string keys and int values. Is there any way I could take this dict and use it to get a list of the keys from highest to lowest value? Example: ``` >>> myDict = {'seven': 7, 'four': 4, 'one': 1, 'two': 2, 'five': 5, 'eight': 8} >>> myList = myDict.sortNumericallyByKeys >>> myList ['eight', 'seven', 'five', 'four', 'two', 'one'] ```