Discuss / Python / 作业

作业

Topic source

def is_palindrome(n): if str(n)==''.join(list(reversed(str(n)))): return n


  • 1

Reply