运行下面程序,输入哪个数时,输出的是True?( )
def palindrome(x): if x[ : : -1] == x: return True return False n = input() print(palindrome(n))
12321
1212
12212
23312