''' Purpose: expand input processing capabilities by splitting an input string into its component words ''' # get input reply = input( 'What are your three favorite words: ' ) print() # determine individual words w1, w2, and w3 w1, w2, w3 = ... # display results print( w1 ) print( w2 ) print( w3 )