运行下面程序,输入哪项时,输出的是True?( )
def palindrome(x): if x[ : : -1] == x: return True return False n = input() print(palindrome(n))
32123
32121
111222
121212