在 python 中从 nltk 工具箱打印停用词时获取 "AttributeError"
Getting "AttributeError" while printing stopwords from nltk toolbox in python
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('stopwords') 下载了停用词,在解压缩 "stopwords" 文件夹后,我将其放在 python34/lib/site-packeges/nltk/stopwords
如何从中获取停用词?
如评论中所述,尝试
from nltk.corpus import stopwords
这应该可以修复错误。
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('stopwords') 下载了停用词,在解压缩 "stopwords" 文件夹后,我将其放在 python34/lib/site-packeges/nltk/stopwords
如何从中获取停用词?
如评论中所述,尝试
from nltk.corpus import stopwords
这应该可以修复错误。