Discuss / Python / 作业

作业

Topic source
def mul(x,*y):    if len(y)==0:        return x    else:        for i in y:            x = x * i        return x

  • 1

Reply