测试了下python的可变长参数。
注意如下:
1. *对应的是元组,**对应的是dict。
所以,在设定参数的时候,可以不用*args1和**args2,而是使用args1, args2来接收。这样的好处是,可以传递多个函数的参数。如:下面定义的fuction p,就传了两对参数。
2. 使用对应元组和dict的时候,与接收相同,仍为:*args1, **args2.
3. 传递元组参数的时候,注意,单元素的元组需要额外加一个逗号,如:(args, )这样才行,否则会不认为是元组。
#!/usr/bin/python
#-*-coding:utf-8-*-
#!Author:[email protected]
# Modified: 20160421.
import os
def f1(f1,f2,ff3=1):
print "f1:",f1,"f2:",f2,"ff3:",ff3
return 1 + 10*ff3
def f2(f1,f2,ff3=2):
print "f1:",f1,"f2:",f2,"ff3:",ff3
return 1 + 10*ff3
def f3(f1,f2,ff3=3):
print "f1:",f1,"f2:",f2,"ff3:",ff3
return 1 + 10*ff3
def f4(s1,s2=100):
print "s1:",s1
print "s2:",s2
def p1(p1,p2,f,*args1,**args2):
print "p1:",p1,"p2:",p2
print type(args1),args1
print type(args2),args2
f(*args1,**args2)
def p(p1,p2,f,args1,args2, f2=None, args3=(), args4={}):
print "p1:",p1,"p2:",p2
print type(args1),args1
print type(args2),args2
print type(args3),args3
print type(args4),args4
f(*args1,**args2)
if f2:
if args4:
f2(*args3,**args4)
else:
f2(*args3,**args4)
#f2(*args3)
#f2("ls")
for f in [f1, f2, f3]:
p1(1,2,f,10,f2=20,ff3=3)
#p(1,2,f,(10,20),{},os.system,(str("pwd"), ))
#p(1,2,f,(10,20),{"ff3":111},f4,(str("pwd")))
#p(1,2,f,(10,20),{"ff3":111},f4,(10,20))
#p(1,2,f,(10,20),{"ff3":111},f4,(10,))
#p(1,2,f,(10,20), {})
print