programming-examples/python/Math/Find the next previous palindrome of a specified number.py
2019-11-15 12:59:38 +01:00

7 lines
226 B
Python

def Previous_Palindrome(num):
stringx = str(num)
for x in range(num-1,0,-1):
if str(x) == str(x)[::-1]:
return x
print(Previous_Palindrome(99));
print(Previous_Palindrome(1221));