8. Palindrome Integers - Python
A palindrome is a number that reads the same backward as forward, such as 323 or 1001. Write a function that receives a list of positive integers, separated by comma and space ", ". The function should check if each integer is a palindrome - True or False. Print the result.
Нямам идея как да принтирам всеки път True или False от функцията и накрая return-а да не ми върне None или нещо друго
def palindrome_checker(list): for num in list: is_palindrome = num[0] == num[-1] print(is_palindrome) positive_ints = input().split(", ") print(palindrome_checker(positive_ints))