Discuss / Python / 交作业

交作业

Topic source

def product(x, *y): if not y: return x

for each in y:
    x *= each
return x

  • 1

Reply