Given a string, return the longest palindromic substring. Implement def longest_palindrome(s):, returning a string. A palindrome reads identically from left to right and right to left. If multiple palindromic substrings have the same maximum length, return the one that appears first.
def longest_palindrome(s):