📜  在 python 代码示例中使用 for 循环进行回文检查

📅  最后修改于: 2022-03-11 14:45:31.854000             🧑  作者: Mango

代码示例1
p = list(input())
for i in range(len(p)):
    if p[i] == p[len(p)-1-i]:
        continue
    else:
         print("NOT PALINDROME")
         break
else:
    print("PALINDROME")