''' Purpose(s): String chrestomathics Motivate the need for looping ''' ADAGE = "Love is all you need" # prompt and get from user the number of occurrences to be printed reply = input( "Enter number of lines to be printed: " ) n = int( reply ) # print the n occurrences of the string of interest ...