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

Python Special Syntax 10:列表综合,不定数参数传递(C#的params关键字)

时间:2014-07-05 18:53:17      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   html   for   

列表综合 参见:http://woodpecker.org.cn/abyteofpython_cn/chinese/ch15s03.html

 

#-*-coding:utf-8
def ttt(value1,*args):
    for i in args:
        value1+=i
    print(value1)

def tt2(**args):
    iSum=args[a]+args[b]
    print iSum

ttt(10,1,2,3,4)
tt2(a=3,b=4)

输出:
20
7

 

Python Special Syntax 10:列表综合,不定数参数传递(C#的params关键字),布布扣,bubuko.com

Python Special Syntax 10:列表综合,不定数参数传递(C#的params关键字)

标签:style   blog   http   color   html   for   

原文地址:http://www.cnblogs.com/yanyuge/p/3822874.html

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