码迷,mamicode.com
首页 > 编程语言 > 详细

python实现累乘multi函数(函数参数不限)

时间:2017-05-07 12:55:04      阅读:3561      评论:0      收藏:0      [点我收藏+]

标签: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))#参数不限个数

python实现累乘multi函数(函数参数不限)

标签:for   参数   return   res   nbsp   int   pytho   result   python   

原文地址:http://www.cnblogs.com/didiaoxiaoguai/p/6820307.html

(2)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!