''' Purpose: solve the aeschylus.py homework assignment ''' # get input text text = input( 'Enter text: ' ) print() # convert text into a list of words ... # print the list of input words ... # build a new word list whose elements are s-less versions of the input words ... # print the list of s-less words ...