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