Discuss / Python / 最简单的方法

最简单的方法

Topic source

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


  • 1

Reply