Discuss / Python / 交作业

交作业

Topic source
在此插入代码

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


  • 1

Reply