Codes for Tagging English Words for Part-of-Speech
Published by Haerim Hwang
part-of-speech syntactic category natural language processing google colab python
0 min READ
This script marks up each word in a text as corresponding to a particular part of speech.
Codes
Step 1: Import modules
import nltk
nltk.download('punkt')
nltk.download('averaged_perceptron_tagger')
Step 2: Tag each word for its part-of-speech
sentence = "You are right that I need to send it to him soon."
tokens = nltk.word_tokenize(sentence)
tagged = nltk.pos_tag(tokens)
Step 3: Check output
tagged