is there not a way to make this work in python, to compare or compute if a string is a palindrome i know why it doesn't work, but is there some python magic to make python read the other side of the index like -1(end to start) instead of 1(start to end)
for x in string:
if x == -x:return True
am not looking for slicing / reversing the string using function and then comparing !