Palindrom -Code für Paython 5 CharctartArt

string=input(("Enter a string:"))
if(string==string[::-1]):
      print("The string is a palindrome")
else:
      print("Not a palindrome")
Obnoxious Octopus