python argument list_Keyword argument in unpacking argument list/dict cases in Python
问题Forpython,Icoulduseunpackingargumentsasfollows.defhello(x,*y,**z):print'x',xprint'y',yprint'z',zhello(1,*[1,2,3],a=1,b=2,c=3)hello(1,*(1,2,3),**{'a':1,'b':2,'c':3})x=1y=(1,2,3)z={'a':1,'c':3,'b':2}B