''' 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('Type a sentence: ') words = reply.split() # print what we have so far print( 'words =', words ) # ....