Discuss / Python / Test

菜问

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

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

    ret = 1

    for i in val:

        ret = ret * i

    return x * y * ret


  • 1

Reply