码迷,mamicode.com
首页 > 其他好文 > 详细

创建sum求多元素的和

时间:2018-07-05 23:30:53      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:def   nbsp   print   color   div   元素   col   pre   int   


 1 a = [1, 2, 3]
 2 b = [4, 5, 6]
 3 
 4 
 5 def sum_super(* args):
 6     s = 0
 7     for i in args:
 8         s += sum(i)
 9     return s
10 
11 
12 # print(sum_super(a, b))

 

创建sum求多元素的和

标签:def   nbsp   print   color   div   元素   col   pre   int   

原文地址:https://www.cnblogs.com/tttzqf/p/9270443.html

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