How would I get the some value, alphabetically, from a dictionary in python?
For example, if we have:
dict = {'A':1, 'B':7, 'C':3}
How would I get it to return the highest value in the alphabet from the dictionary (1), the second highest (7) and the lowest (3)?