>>> d = {"aa": 3, "bb": 4, "cc": 2, "dd": 1} >>> for k in sorted(d, key=d.get, reverse=True): ... k, d[k] ... ('bb', 4) ('aa', 3) ('cc', 2) ('dd', 1)