Pergunta de entrevista da empresa IBM

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

Resposta da entrevista

Sigiloso

12 de jul. de 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")