标签:for 参数 return res nbsp int pytho result python
def multi(*n):
result=1
for i in n:
result=result*i
return result
print(multi(1,3,4))#参数不限个数
标签:for 参数 return res nbsp int pytho result python
原文地址:http://www.cnblogs.com/didiaoxiaoguai/p/6820307.html