Discuss / Python / demo

YOUTH

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

def mul(x, *y):

    value=x

    l=len(y)

    if l > 0:

        for n in y:

            value*=n

    return value


  • 1

Reply