Pergunta de entrevista da empresa Cybrosys Technologies

Write program to check if it's palindrome

Resposta da entrevista

Sigiloso

28 de abr. de 2026

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