classement=Counter(results)
liste = classement.most_common()
print(liste)
Now what I have with the above print is
[(u'a', 5), (u'b', 3), (u'c', 2), (u'd', 2), (u'e', 2), (u'f', 2), (u'g', 2), (u'h', 1), (u'i', 1)]
But I would like something like that, I don't know how to format it
a = 5
b = 3
c = 2
etc...
etc...
Thanks for help!