Discuss / Python / 能算最简的吗

能算最简的吗

Topic source

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


  • 1

Reply