Write a program about palindrome in any programming language, tell me about the college project
Sigiloso
#Python n = input("enter number/text: ") if ( n [ : : ] == n[ : : -1] ): print("The entered text/number is a Palindrome") else: print("The entered text/number is not a Palindrome")