Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import nltk
- import nltk.corpus
- w = nltk.corpus.stopwords.words('english')
- print(type(w)) # list
- print(len(w)) # 179
- w.remove('not')
- w.remove('no')
- print(len(w)) # 177
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement