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