Discuss / Python / 作业打卡-函数-函数的参数

作业打卡-函数-函数的参数

Topic source

南丁叔叔

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

def product(s,*args):

    for x in args:

        s *= x

    return s


  • 1

Reply