Pregunta de entrevista de Cybrosys Technologies

Write program to check if it's palindrome

Respuesta de la entrevista

Anónimo

28 abr 2026

text = input("Enter the string") text = text.lower(); if text == text[: :-1]: print("it is palindrome") else: print("not")