''' Purpose: introduce how string accumulation works by building the reverse of a user-suppliedd string ''' # get text from user text = input( 'Enter text: ' ) print() # initialize the reversal accumulator reverse = ... for current_character in text : # add current character to the reversal ... # print the result print( reverse )