Ai
1 Star 0 Fork 0

Role/Python

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Palindrome_Checker.py 412 Bytes
一键复制 编辑 原始数据 按行查看 历史
avais umar 提交于 2020-12-26 17:37 +08:00 . Using slicing technique checking for palindrome
"""
A simple method is , to reverse the string and and compare with original string.
If both are same that's means string is palindrome otherwise else.
"""
phrase = input()
if phrase == phrase[::-1]: # slicing technique
"""phrase[::-1] this code is for reverse a string very smartly """
print("\n Wow!, The phrase is a Palindrome!")
else:
print("\n Sorry, The given phrase is not a Palindrome.")
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/CRole/Python.git
git@gitee.com:CRole/Python.git
CRole
Python
Python
master

搜索帮助