Snowball Stemmer English

Report a typo

You are given a list of tokenized words from a sentence in English. Stem the words using the Snowball stemmer and print them, each stem on a new line.

Write a program in Python 3
from nltk.stem import SnowballStemmer


# the following line reads a text from the input and converts it into a list
sent = input().split()

# write your code here
___

Create a free account to access the full topic