''' Purpose: demonstrate string acquisition (the getting of input) ''' # get input reply = input( 'Tell me what is on your mind: ' ) print() # More on the for loop to come! (How to repeat something a finite number of times) # Keep asking for user input based on the last thing they typed that's stored in reply # Asks this 10 times # FOR LOOP (don't worry about this too much for now!) for i in range(0,10): prompt_for_more_info = 'Hmmm. --' + reply + ' -- Why is that on your mind: ' reply = input( prompt_for_more_info ) print() response = 'Oh? I wish we had more time to chat. So long.' print( response )