Skip to content

Instantly share code, notes, and snippets.

@AiHiro
Last active February 5, 2016 15:36
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 AiHiro/80cc5f970d4e1c0fb1b3 to your computer and use it in GitHub Desktop.
Save AiHiro/80cc5f970d4e1c0fb1b3 to your computer and use it in GitHub Desktop.
def count_words(text, words):
return sum(w in text.lower() for w in words)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment