Discuss / Python / filter 作业

filter 作业

Topic source
def is_palindrome(n):
    stn = str(n)
    if stn == stn[::-1]:
        return n

  • 1

Reply