Skip to content

Instantly share code, notes, and snippets.

@mythmon
Created November 5, 2014 07:34
Show Gist options
  • Save mythmon/eee0649358c6dbca862f to your computer and use it in GitHub Desktop.
Save mythmon/eee0649358c6dbca862f to your computer and use it in GitHub Desktop.
def count_words(story):
return len(list(filter(None, re.split(r"[^\w']", story))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment