Write program to check if it's palindrome
Anonymous
text = input("Enter the string") text = text.lower(); if text == text[: :-1]: print("it is palindrome") else: print("not")
Check out your Company Bowl for anonymous work chats.