1. 程式人生 > >Python基礎判斷回文數

Python基礎判斷回文數

bsp true break raw_input [] inpu input append int

#判斷回文數

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基礎判斷回文數