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

列表综合 参见: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关键字)

上一篇:Android卡顿优化:卡顿分析方法


下一篇:浅谈C++多态性