d = {'AAA': 1, 'BBB': 5, 'CCC': 3}

for k in sorted(d, key=d.get, reverse=True):
	print("{} - {}".format(k, d[k]))