Python Program to Check Whether a String is Palindrome or Not
n=raw_input("Enter the String:")
def palindrome(n):
index=0
check=True
while index<len(n):
if n[index]==n[-1-index]:
index+=1
return True
return False
if palindrome(n)==True:
print "It is a
Palindrome"
else:
print "It is not a
Palindrome"
No comments :
Post a Comment