• 2022-07-26
    判断回文字符串,回文字符串是正读和反读都一样的字符串,比如字符串"aba"就是回文字符串 a=input() b=a[:: ] if a b: print('是回文字符串') [br][/br] print('不是回文字符串')