Discuss / Python / 打卡

打卡

Topic source

def product(x,*n):

    for y in n:

        x=x*y

    return x


  • 1

Reply