【发布时间】:2017-07-08 09:11:23
【问题描述】:
我正在尝试编写一个 python 程序来使用 nltk 包从句子中删除停用词
from nltk.corpus import stopwords
chachedWords = stopwords.words('english')
下面给出TypeError: 'LazyCorpusLoader' object is not callable
【问题讨论】:
标签: python nltk typeerror stop-words