Pages

Mar 22, 2015

[Python] Find part of speech (POS) by using NLTK

>>> import nltk
#remember to use list
>>> x = nltk.pos_tag(['New'])
>>> print(x)
[('New', 'NNP')]
>>> print(x[0][1])
NNP
#if you don't use list, then the pos_tag function will find the pos for each character
>>> x = nltk.pos_tag('New')
>>> print(x)
[('N', 'NNP'), ('e', 'VBP'), ('w', 'NN')]
view raw pos.py hosted with ❤ by GitHub

No comments:

Post a Comment