Python的位置参数,可选参数,关键字参数
关键字参数:把参数名与值绑定在一起,使用参数名提供的参数叫做关键字参数。设置关键字参数默认值。
位置参数:带单个星号参数(以元祖形式输出)
关键字参数:带两个星号参数《以字典形式输出,
*是一个元组类型的数值
def funcD(a, b, *c):
print a
print b
print "length of c is: %d " % len(c)
print c
funcD(1,2,3,4,5,6)
两个星号表示字典类型的数值
def funE(a,*c,**d):
print a
print "length of c is: %d " % len(c)
print c
print d
print 'length of d is %d' %len(d)
funE(1,2,3,4,5,6,6,7,8,9)