24.python传递可变长的非关键参数和关键参数
非关键参数就是没有指定参数名的参数,关键参数就是制定了参数名的参数。
例子:(非关键字可变长参数)
#-*-coding:UTF-8-*- def dec(a,b,c,*ne): print a,b,c for n in ne: print n dec(1,2,3,4,5,6,7)
例子2:(关键字可变长参数)
#-*-coding:UTF-8-*- def dec(a,b,c,**ne): print a,b,c for n in ne.keys(): print n,':',ne[n] dec(1,2,3,d=4,e=5,f=6,g=7)