Untitled

 avatar
unknown
python
a year ago
302 B
4
Indexable
if __name__ == '__main__':
    word = input("Please enter a word: ")

    reverse_word = ''
    for i in range(len(word)):
        reverse_word += word[len(word) - 1 - i]

    if word == reverse_word:
        print("This is a Palindrome")
    else:
        print("This is not a Palindrome")
Editor is loading...
Leave a Comment