Answer:
The program is as follows:
sentence = input("Sentence: ")
numbers = []; words = []
for word in sentence.split():
if word.lower() == word[::-1].lower():
if word.isdigit() == False:
words.append(word)
else:
numbers.append(int(word))
words.sort(); numbers.sort()
print(numbers); print(words)
Step-by-step explanation:
This gets input for sentence
sentence = input("Sentence: ")
This initializes two lists; one for numbers, the other for word palindromes
numbers = []; words = []
This iterates through each word of the sentence
for word in sentence.split():
This checks for palindromes
if word.lower() == word[::-1].lower():
If the current element is palindrome;
All word palindromes are added to word palindrome lists
if word.isdigit() == False:
words.append(word)
All number palindromes are added to number palindrome lists
else:
numbers.append(int(word))
This sorts both lists
words.sort(); numbers.sort()
This prints the sorted lists
print(numbers); print(words)