博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
判断字符串是否为回文 python
阅读量:5114 次
发布时间:2019-06-13

本文共 721 字,大约阅读时间需要 2 分钟。

回文正序和逆序一样的字符串,例如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'

转载于:https://www.cnblogs.com/xiaomingtx/p/9099600.html

你可能感兴趣的文章
《转》Python学习(18)-python函数(二)
查看>>
awk应用场景之过滤举例
查看>>
编译与链接的简单过程小结
查看>>
119 - Greedy Gift Givers
查看>>
[置顶] 可选参数及命名实参在一起
查看>>
Integer Inquiry_hdu_1047(大数).java
查看>>
uva 387 A Puzzling Problem (回溯)
查看>>
K均值算法实现
查看>>
js时间戳与日期格式之间相互转换
查看>>
python全栈之路系列之赋值与运算符
查看>>
剑指offer--4.重建二叉树
查看>>
this指针基础介绍
查看>>
如何把checkbox做成radio一样的单选效果
查看>>
分享:将业务系统页面嵌入到统一平台中(简易版)
查看>>
我要学习Python
查看>>
toad连接数据库
查看>>
Convert recaf.jar file to recaf.dmg setup package on MacOS
查看>>
tp5之行为监听、钩子行为的绑定与侦听
查看>>
Java中算法的时间及空间复杂性
查看>>
Qt中Pro文件变量详细说明
查看>>