Porter Stemmer

Report a typo

Stem the input word using the Porter stemmer from the NLTK library and then print the result.

Sample Input 1:

unpreventable

Sample Output 1:

unprevent
Write a program in Python 3
from nltk.stem import PorterStemmer
___

Create a free account to access the full topic