''' Purpose: introduce looping. the program processes the characters in a string one-by-one. ''' # get user's name name = input( "Enter first name: " ) # print the letters in the name one-by-one for current_letter in name : # process the current letter by printing it print( current_character )