Given a string, determine if it is a palindrome.
Sigiloso
str="ANna".lower() len=len(str) slicedString = str[ len::-1 ] for i in str: if i.isdigit(): raise Exception ("{0} not string".format(str)) if str == slicedString: print("{1} is palindrome for {0}".format(str,slicedString)) else: print("Not palindrome")