0
MMahendra Kumar
to check whether a given string is palindromic or not
0 Comments
def ispalindrome(s): return s == s[::-1] # Driver code s = str(input()) ans = isPalindrome(s) if ans: print("Yes") else: print("No")