pierreguillou commited on
Commit
b5cb1eb
1 Parent(s): cf141c0

Upload stopwords.py

Browse files
Files changed (1) hide show
  1. stopwords.py +6 -0
stopwords.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ import nltk
2
+ nltk.download('stopwords')
3
+
4
+ from nltk.corpus import stopwords
5
+ stop_words = set(stopwords.words('portuguese'))
6
+ print(stop_words)