''' Purpose: demonstrate string acquisition (the getting of input) ''' # get input reply = input( 'Please provide text: ' ) print( 'Your reply was: ', reply ) print() # get more input reply = input( 'Please provide more text: ' ) print( 'Your new reply was:', reply )