This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> 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')] |
No comments:
Post a Comment