Les collections comptèrent le tri par valeur

>>> Counter('abracadabra').most_common(3)
[('a', 5), ('r', 2), ('b', 2)]
Gentle Grasshopper