Discuss / Python / 作业

作业

Topic source
def mul(x, *y):    if y is None:        return x    for num in y:         x *= num    return x

  • 1

Reply