Skip to content

Instantly share code, notes, and snippets.

@tomislater
Created October 6, 2013 15:24
Show Gist options
  • Select an option

  • Save tomislater/6855354 to your computer and use it in GitHub Desktop.

Select an option

Save tomislater/6855354 to your computer and use it in GitHub Desktop.
>>> from random import randint
>>> from collections import Counter
>>> l = [randint(0, 333) for x in xrange(100)]
>>> c = Counter(l)
>>> c.most_common(5)
[(286, 3), (314, 3), (133, 2), (139, 2), (142, 2)]
>>> c[286]
3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment