I changed "stem" to "suff", but it went wrong. Does anybody know how to use the suff fuction?
from nltk.stem.snowball import SnowballStemmer
from nltk.stem import arlstem
for j in range(0 , len(contextsWorld_1)):
a = stemmer.stem(contextsWorld_1[j])
contextsWorld_1_1.append(a)
print(contextsWorld_1_1)
suff
is a method of the arlstem module, which is designed for stemming Arabic text.If the goal is to remove the suffixes of English words, we want to stem them with something like the English SnowballStemmer. Here is a minimal example:
Output: