Domanda di colloquio di Cybrosys Technologies

Write program to check if it's palindrome

Risposta di colloquio

Anonimo

28 apr 2026

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