IBM Interview Question

Write a program about palindrome in any programming language, tell me about the college project

Interview Answer

Anonymous

Jul 12, 2024

#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")