¡@

Home 

python Programming Glossary: palindrome

python: recursive check to determine whether string is a palindrome

http://stackoverflow.com/questions/11496637/python-recursive-check-to-determine-whether-string-is-a-palindrome

recursive check to determine whether string is a palindrome My task is to define a procedure is_palindrome that takes as.. is a palindrome My task is to define a procedure is_palindrome that takes as input a string and returns a boolean indicating.. and returns a boolean indicating if the input string is a palindrome. In this case a single letter should return True as should an..

Python 3.2 palindrome

http://stackoverflow.com/questions/11758791/python-3-2-palindrome

3.2 palindrome I'm doing some python online tutorials and I got stuck at an.. python online tutorials and I got stuck at an exercise A palindrome is a word which is spelled the same forwards as backwards. For.. forwards as backwards. For example the word racecar is a palindrome the first and last letters are the same r the second and second..

How to check for palindrome using Python logic

http://stackoverflow.com/questions/17331290/how-to-check-for-palindrome-using-python-logic

to check for palindrome using Python logic My background is only a 6 month college.. up to date Python 3 advice for this. How can I solve a palindrome challenge in Python without using the for loop I've done this.. value product of two 3 digit integers that is also a palindrome. python palindrome share improve this question A pythonic..

Python reverse() for palindromes

http://stackoverflow.com/questions/5202533/python-reverse-for-palindromes

reverse for palindromes I'm just getting started in python and I'm trying to test.. python and I'm trying to test a user entered string as a palindrome. My code is x input 'Please insert a word' y reversed x if x.. 'Please insert a word' y reversed x if x y print 'Is a palindrome' else print 'Is not a palindrome' This always returns false..

Palindrome from the product of two 3-digit numbers

http://stackoverflow.com/questions/7460545/palindrome-from-the-product-of-two-3-digit-numbers

product of two 3 digit numbers I want to find the largest palindrome that can be obtained through the multiplication of two 3 digit.. to figure out what I'm missing. python project euler palindrome share improve this question You cannot decrement a and b..