Skip to content

Instantly share code, notes, and snippets.

@kevinschaich
Created November 2, 2016 04:31
Show Gist options
  • Save kevinschaich/ae001de1ae47f74fb05987ad6b794536 to your computer and use it in GitHub Desktop.
Save kevinschaich/ae001de1ae47f74fb05987ad6b794536 to your computer and use it in GitHub Desktop.
Cool things in Python
# Counter: returns dictionary of {element: count} for a given list
from collections import Counter
counter = Counter(list)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment