Skip to content

Instantly share code, notes, and snippets.

@acrymble
Created July 5, 2011 19:32
Show Gist options
  • Save acrymble/1065679 to your computer and use it in GitHub Desktop.
Save acrymble/1065679 to your computer and use it in GitHub Desktop.
Python Remove Stopwords
# Given a list of words, remove any that are
# in a list of stop words.
def removeStopwords(wordlist, stopwords):
return [w for w in wordlist if w not in stopwords]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment