获取" AttributeError"同时从python中的nltk工具箱打印停用词

时间:2016-01-03 07:34:30

标签: python nltk sentiment-analysis stop-words

from nltk import stopwords 
print(stopwords.words('english'))

第二行是错误,

Traceback (most recent call last):
  File "<pyshell#16>", line 1, in <module>
    print(stopwords.words('english'))
AttributeError: 'module' object has no attribute 'words'

我已经使用pip install nltk安装了nltk然后我使用命令nltk.download(&#39; stopwords&#39;)解压缩了解密码后解压缩&#34;停用词&#34;文件夹我把它放在python34 / lib / site-packeges / nltk / stopwords

我如何从中获得停用词?

1 个答案:

答案 0 :(得分:1)

如评论中所述,请尝试

from nltk.corpus import stopwords

这应该可以解决错误。