Discuss / Python / test

_-_

#1 Created at ... [Delete] [Delete and Lock User]

def mul(x, y=1, *arg):

    sum = 1

    if len(arg)!=0:

        for i in arg:

            sum *=i

    return x * y * sum


  • 1

Reply