判断字符串是否为回文 python

Posted xiaomingtx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断字符串是否为回文 python相关的知识,希望对你有一定的参考价值。

回文正序和逆序一样的字符串,例如abccba

方法一

def is_palindrome1(text):
    l = list(text)
    l.reverse()
    t1 = ‘‘.join(l)
    if t1 == text:
        print ‘the text is palindrome‘
    else:
        print ‘the text is not palindrome‘

方法二

def is_palindrome2(text):
    t1 = text[::-1]
    if t1 == text:
        print ‘the text is palindrome‘
    else:
        print ‘the text is not palindrome‘

方法三

def is_palindrome3(text):
    r = True
    for x in range(len(text)):
        print x,text[x]
        if text[x] != text[len(text)-x-1]:
            print 1
            r = False
            break
    if r == True:
        print ‘the text is palindrome‘
    else:
        print ‘the text is not palindrome‘

以上是关于判断字符串是否为回文 python的主要内容,如果未能解决你的问题,请参考以下文章

利用python判断字符串是否为回文

怎么用python写判断回文数

添加字符判断是否为回文串

递归判断字符串是否为回文

python判断一个字符串是否是回文

用递归方法判断字符串是否是回文(Recursion Palindrome Python)