Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions PalindromeChecker.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
def next_palindrome(n):
n = n+1
while not is_palindrome(n):
n += 1
return n


def is_palindrome(n):
return str(n) == str(n)[::-1]

if __name__ == "__main__":
size = int(input("Enter the size of your list\n"))
num_list = []
for i in range(size):
num_list.append(int(input("Enter the number of the list\n")))
print(f"You have entered {num_list}")

print(f"Output List: {[num_list[i] if num_list[i] < 10 else next_palindrome(num_list[i] ) for i in range(size)]}")


# new_list = []
# for element in num_list:
# if element >10:
# n = next_palindrome(element)
# new_list.append(n)

# else:
# new_list.append(element)
# print(f"Output List: {new_list}")