Python: INverting String without function

PHOTO EMBED

Fri Mar 05 2021 15:24:49 GMT+0000 (Coordinated Universal Time)

Saved by @muneebable #python

def isWordPalindrome(word):
    print(word[-1:0])
    return word == word[::-1]
content_copyCOPY