Skip to content

Instantly share code, notes, and snippets.

@AtufaShireen
Created September 6, 2019 18:53
Show Gist options
  • Save AtufaShireen/15cbf7bb760f1f74efbd84250cf7bc37 to your computer and use it in GitHub Desktop.
Save AtufaShireen/15cbf7bb760f1f74efbd84250cf7bc37 to your computer and use it in GitHub Desktop.
x=input('Enter A Strings')
print('Palindrome' if x==x[::-1] else 'Not a palindrome')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment