Write a function in python, which accept a list of names as argument and return total
number of palindrome names.
Answers
Answer:
A word, number, phrase or a set of characters that read the same backwards as they do forward is known as a Palindrome. When its digits are reversed, they turn out to be the exact same number as the original number. Palindromes can be numeric as well. For example: madam, 1234321. Through this blog, we will learn how to create a Palindrome in Python.
Before learning about Palindrome in Python, if you wish to brush up your Python skills, you can head over to Great Learning Academy and take up the Free Course on Python Fundamentals for Beginners. This free course is designed to teach you the basic concepts required for you to build a career in this domain. The entire course gives you hands-on experience in coding so that you gain practical expertise in the subject, and thereby helping you power ahead your career.
Explanation: