Skip to content

Instantly share code, notes, and snippets.

@pcote
Created February 4, 2016 23:48
Show Gist options
  • Select an option

  • Save pcote/553ce7f04a32c0f9cdb9 to your computer and use it in GitHub Desktop.

Select an option

Save pcote/553ce7f04a32c0f9cdb9 to your computer and use it in GitHub Desktop.
from collections import Counter
counts = Counter(sorted(region_types))
for key, val in counts.items():
print("{}: {}".format(key, val))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment