Discuss / Python / 打卡第二天

打卡第二天

Topic source

参考了大神答案

def is_palindrome(n):

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


  • 1

Reply