Discuss / Python / 作业

作业

Topic source

bdjkmxj

#1 Created at ... [Delete] [Delete and Lock User]
def is_palindrome(n):
    int2str = str(n)
    if int2str[::] == int2str[::-1]:
        return n

  • 1

Reply