Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created September 5, 2021 07:55
Show Gist options
  • Save amankharwal/aae6d263182069935bbb0d7f9300044d to your computer and use it in GitHub Desktop.
Save amankharwal/aae6d263182069935bbb0d7f9300044d to your computer and use it in GitHub Desktop.
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