def prefixagain(string, n): ''' given a string, consider the prefix made of the first n chars of the string. does that prefix string appear somewhere else in the string? assume that the string is not empty and that n is in the range 1..str.length(). case is important to the existence of a prefix. ''' pass