File size: 139 Bytes
b5cb1eb |
1 2 3 4 5 6 |
import nltk
nltk.download('stopwords')
from nltk.corpus import stopwords
stop_words = set(stopwords.words('portuguese'))
print(stop_words) |
b5cb1eb |
1 2 3 4 5 6 |
import nltk
nltk.download('stopwords')
from nltk.corpus import stopwords
stop_words = set(stopwords.words('portuguese'))
print(stop_words) |