Skip to content

Instantly share code, notes, and snippets.

@sumon328
Created August 17, 2020 14:38
Show Gist options
  • Save sumon328/908978043997c483250fb1498a206814 to your computer and use it in GitHub Desktop.
Save sumon328/908978043997c483250fb1498a206814 to your computer and use it in GitHub Desktop.
print("\n___________Welcome to palindrome word Finder___________")
word = input("Enter the word :")
x = word
y = word[::-1]
if x == y:
print("This is an palindrome !")
else:
print("This is not Palindrome !")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment