我只是在使用 Python 学习 nltk。我正在使用 POS 标记。我想知道的是如何使用标签。例如,这是伪代码:
words = []
teststr = "George did well in the test."
tokens = nltk.word_tokenize(teststr)
words = nltk.pos_tag(tokens)
我想做这样的事情:
if words[i] == "proper noun":
#do something
如何检查一个词是名词还是动词或任何其他词性。有人可以帮我吗?谢谢。