Discuss / Python / 交作业

交作业

Topic source

def product(x,*args):

    for i in args:

        x = x * i

    return x


  • 1

Reply