from nltk import stopwords
print(stopwords.words('english'))
Second line is giving error which is
Traceback (most recent call last):
File "<pyshell#16>", line 1, in <module>
print(stopwords.words('english'))
AttributeError: 'module' object has no attribute 'words'
I have installed nltk using pip install nltk then i downloaded stopwords using command nltk.download('stopwords'), after unzipping that "stopwords" folder I placed that in python34/lib/site-packeges/nltk/stopwords
How can i get stopwords from this?