加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
String_Palindrome 367 Bytes
一键复制 编辑 原始数据 按行查看 历史
ashish199912 提交于 2020-10-19 17:15 . String Palindrome or Not
# Program to check if a string is palindrome or not
my_str = 'aIbohPhoBiA'
# make it suitable for caseless comparison
my_str = my_str.casefold()
# reverse the string
rev_str = reversed(my_str)
# check if the string is equal to its reverse
if list(my_str) == list(rev_str):
print("The string is a palindrome.")
else:
print("The string is not a palindrome.")
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化