Skip to content

Instantly share code, notes, and snippets.

@ashishpatel26
Created July 20, 2018 16:52
Show Gist options
  • Save ashishpatel26/275e1e96b51bf58208bada16bb318b64 to your computer and use it in GitHub Desktop.
Save ashishpatel26/275e1e96b51bf58208bada16bb318b64 to your computer and use it in GitHub Desktop.
from nltk.stem import WordNetLemmatizer
lemmatizer = WordNetLemmatizer()
print(lemmatizer.lemmatize('playing', pos="v"))
Output:
play
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment