Discuss / Python / bh打卡day8

bh打卡day8

路由跳变

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

def mul(a, *numbers):

    for n in numbers:

        a = a * n

    return a


  • 1

Reply