Skip to content

Commit

Permalink
Merge pull request #70 from kgupta786/patch-2
Browse files Browse the repository at this point in the history
hacktoberfest_pallindrome
  • Loading branch information
ambujraj authored Oct 1, 2018
2 parents c75b844 + e2dd90d commit e1170fd
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions palindrome/new_pallindrome.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#python3
/*
Made by: Keshav Gupta
8:24 PM
*/

print("Enter the string/number to check")
t=input()
if(t==t[::-1]):
print("The entered value is pallindrome")
else:
print("Entered value is not a pallindrome")

0 comments on commit e1170fd

Please sign in to comment.