Skip to content

Instantly share code, notes, and snippets.

@barce
Last active June 19, 2017 17:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save barce/2f688adb919adaebe31784180858f9c9 to your computer and use it in GitHub Desktop.
Save barce/2f688adb919adaebe31784180858f9c9 to your computer and use it in GitHub Desktop.
collections in python
import collections
c = collections.Counter('helloworld')
print(c)
# Counter({'l': 3, 'o': 2, 'e': 1, 'd': 1, 'h': 1, 'r': 1, 'w': 1})
print(c.most_common(3))
# [('l', 3), ('o', 2), ('e', 1)]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment