Contact: aviboots(AT)netvision.net.il
39,960 questions
51,902 answers
573 users
s = "abcba" rev = ''.join(reversed(s)) if s == rev: print("Palindrome") else: print("Not Palindrome") ''' run: Palindrome '''