Skip to content

Instantly share code, notes, and snippets.

@evernick
Last active August 29, 2015 14:23
Show Gist options
  • Save evernick/b03d5ffcef2b9f676a97 to your computer and use it in GitHub Desktop.
Save evernick/b03d5ffcef2b9f676a97 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
import sys, collections
if __name__ == "__main__":
f = open(sys.argv[1], "rb")
text = f.read()
count = collections.Counter(text)
print count
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment