[Solved] How to make a Palindrome Calculator in Python


Thank you everyone, the code I found to be the answer was this:

begin = int(input('Enter begin: '))
end = int(input('Enter end: '))

palindromes = palindromes = len([i for i in range(begin, end+1) if str(i) ==     str(i)[::-1]])
  for i in range(begin, end+1):
    if str(i) == str(i)[::-1]:
      print(i,'is a palindrome')

print('There are', palindromes, 'palindrome(s) between', begin, 'and', end)

solved How to make a Palindrome Calculator in Python