Discuss / Python / 我的答案,请大家指教。

我的答案,请大家指教。

Topic source

冯征sh

#1 Created at ... [Delete] [Delete and Lock User]

def is_palindrome(n):

    return n==int(str(n)[::-1])


  • 1

Reply