Discuss / Python / Simple answer

Simple answer

Topic source

def ispalindrome(n): n = str(n) return n == n[::-1]


  • 1

Reply