Discuss / Python / 作业

作业

Topic source

Limit_阿廖

#1 Created at ... [Delete] [Delete and Lock User]
def is_palindrome(n):
    return n == int(str(n)[::-1])

  • 1

Reply