在 PyCharm 中安装 NLTK 后,为何无法使用 word_tokenize 函数?

在 pycharm 中安装 nltk 后,为何无法使用 word_tokenize 函数?

无法调用 nltk 包

pycharm 中安装 nltk 后,但无法调用其功能怎么办?

问题详情:

import nltk

for_test = 'xi is the chairman of china in the year 2013.'
print(nltk.word_tokenize(for_test))

遇到了以下错误:

AttributeError: module 'nltk' has no attribute 'word_tokenize'

答案:

请查阅 nltk 官方文档。

以上就是在 PyCharm 中安装 NLTK 后,为何无法使用 word_tokenize 函数?的详细内容,更多请关注www.sxiaw.com其它相关文章!