Discuss / Python / 遍历

遍历

Topic source

def product(x, *y):

    for i in y:

        x *= i

return x


  • 1

Reply