Discuss / Python / 最短的作业

最短的作业

Topic source

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


  • 1

Reply