A.def vfunc(s,a=1,*b)
B.def vfunc(a=3,b)
C.def vfunc(a,**b)
D.def vfunc(a,b=2)
函数定义时语法如下:def <函数名> (<非可选参数列表>,<可选参数列表> = <默认值>):
<函数体>