Check Palindrome in Python Using List Slicing Example # Enter stringword=input()# Check for palindrome strings using list slicingifstr(word)==str(word)[::-1]:print("Palindrome")else:print("Not Palindrome") The program begins by prompting the user to input a string using theinput()function...
If it is equal then the number is palindrome, otherwise not palindrome number as shown here in the following program. C++ Programming Code to Check Palindrome or Not Following C++ program ask to the user to enter a number to reverse it, then check whether reverse is equal to its original o...
using System;using System.Linq;namespace palindrome{class Program{publicstaticboolcheckPalindrome2(string mainString){returnmainString.SequenceEqual(mainString.Reverse());}staticvoidMain(string[]args){bool palindrome=checkPalindrome2("12321");Console.WriteLine(palindrome);}}} ...