''' Purpose: demonstrate the printing of a list of words, one word per line ''' # get list of words reply = input( "Enter text: " ) words = reply.split() ### print the words ...