Untitled

 avatar
unknown
python
2 years ago
229 B
7
Indexable
if __name__ == '__main__':
    word = input("Please enter a word: ")

    reverse_word = word[::-1]

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