Discuss / Python / 作业

作业

Topic source

吃货

#1 Created at ... [Delete] [Delete and Lock User]
def mul(x, *y):    if not y:        y = 1        return x    num = x    for s in y:        num = num * s    return num

  • 1

Reply