运行下面程序,输入哪项,输出的是True?( )
def palindrome(x): if x[ : : -1] == x: return True return False n = input() print(palindrome(n))
8668668
6868
688686
666668