Write a recursive function in python called make_palindrome thattakes a sequence as a parameter and returns a new sequence that istwice the length of the parameter sequence but that contains thecontents of the original in palindrome form. For example, if thesequence \"super\" is passed into the function, the function willreturn \"superrepus\".