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.
Overview of text normalization
Lancaster Stemmer
Report a typo
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
___
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.