Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created September 5, 2021 07:55
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
import nltk
nltk.download('averaged_perceptron_tagger')
from nltk import word_tokenize, pos_tag
sentence = "I will move to Himachal Pradesh forever!"
tokens =word_tokenize(sentence)
tags = pos_tag(tokens)
print(tags)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment