Answers for "Python - How To Check if a String Is a Palindrome"

0

Python - How To Check if a String Is a Palindrome

word = input() if str(word) == str(word)[::-1] :     print("Palindrome") else:     print("Not Palindrome")
Posted by: Guest on January-28-2022

Code answers related to "Python - How To Check if a String Is a Palindrome"

Python Answers by Framework

Browse Popular Code Answers by Language