''' e-mail 1: e-mail 2: Purpose: experience the thrill of string manipulation *** Only change the lines that are currently ... **** ''' # get input s = input( "Enter a line of text: " ) print( ) ###### determine n -- the length of s n = ... # display result print( "The input has length:", n ) print( ) ###### determine last_index -- the index of the last character in s last_index = ... # determine last_character -- the last character in s last_character = ... # display result print( "The last character ( i.e., at index", last_index, ") is:", last_character ) print( )