''' Purpose: demonstrate string acquisition (the getting of input) ''' # get input reply = input( 'Tell me what is on your mind: ' ) print() response = 'That is interesting. Why is "' + reply + '" on your mind? ' reply = input( response ) print() print( 'Oooh.' )