Discuss / Python / 妖夜

妖夜

Topic source

def product(b,*numbers):

    for a in numbers:

        b=b*a

    return b


  • 1

Reply