Discuss / Python / 第三天

第三天

Topic source

def is_palindrome(n): x = str(n) y = x[::-1] if x == y: return True else: return False


  • 1

Reply