Hi!
AttributeError Traceback (most recent call last)
<ipython-input-27-c11d0c52c7db> in <module>
7 jobs_list = ' '.join(words)
8
----> 9 stop_words = stopwords.words('english')
10 stop_words = set(stop_words)
11
AttributeError: module 'stopwords' has no attribute 'words'
I’m getting this error when I try to run stopwords. Already imported nltk and installed and imported stopwords. I’m using Colab.