Lancaster Stemmer

Report a typo

You are given a list of tokenized words from an English text. Stem the words using the Lancaster Stemmer and print them, each stem on a new line.

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


# 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