首页 > 代码库 > 回文验证
回文验证
A_byte_of_Python-v192-for_Python_3.0-中文版.pdf 中的一道题:
练习题:
检测一个文本是否为回文应该忽略标点,空格和大小写。
例如”Rise to vote, sir.”同样是一个回文,但是我们当前的例子无法识别它。你能
改善这个例子让它做都这点吗?
代码有点挫,莫笑:
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | def reverse(text): return text[:: - 1 ] def is_huiwen(text): return text = = reverse(text) while True : somethine = input ( ‘Enter text:‘ ) somethine = somethine.lower() alist = [] for oneword in somethine: if (oneword.isalpha()): alist.append(oneword) else : continue if (is_huiwen(alist)): print ( "YES,it‘s a huiwen string" ) else : print ( "No,it‘s not a huiwen string" ) |
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。