Python可变参数函数用法实例
本文实例讲述了Python可变参数函数用法。分享给大家供大家参考。具体如下:
#!/usr/bin/python deff1(a,b):printa,b deff2(a,*b):printa,b deff3(a,**b):printa,b deff4(a,*b,**c):printa,b,c deff5(a,b=2,c=3):printa,b,c deff6(a,b=2,*c):printa,b,c f1(1,2) f1(b=2,a=1) f2(1,2,3,4) f3(1,x=2,y=3,z=4) f4(1,x=2,y=3) f5(1) f5(1,4) f6(1) f6(1,3,4,5,4)
#!/usr/bin/python defechoo(*args,**kwargs): printargs,kwargs echoo(1,2,a=3,b=4) pargs=(1,2) pkwargs={'a':3,'b':4} apply(echoo,pargs,pkwargs)
希望本文所述对大家的Python程序设计有所帮助。