print "Check if a word is Palindrome" print "=============================" word = raw_input("Enter Word : ") new = ''.join(word[-i] for i in range(1,len(word)+1)) if new == word: print"The Word %s is Palindrome" % word else: print"The Word %s is not Palindrome" % word