Discuss / Python / 作业

作业

Topic source
def trim(s):    if s=='':        return s    elif s[0]==' ':        return trim(s[1:])    elif s[-1]==' ':        return trim(s[:-1])    else:        return s

  • 1

Reply