Python基础判断回文数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python基础判断回文数相关的知识,希望对你有一定的参考价值。
#判断回文数
a=raw_input(‘your enter:\n‘)
b=[]
l=len(a)
for i in range(0,l):
m=a[l-i-1]
b.append(m)
for j in range(l):
mark=True
if a[j]!=b[j]:
print ‘no‘
mark=False
break
if mark==True:
print ‘yes‘
以上是关于Python基础判断回文数的主要内容,如果未能解决你的问题,请参考以下文章