''' Purpose: convert input into a list of words; print the list; remove all "s" from the words in the list; print the updated list ''' # get input and convert it into a list of words reply = input( "Enter text: " ) words = reply.split() # print the list of input words print( words ) # ....