Python中*args和**kwargs的区别详解 一、*args的使用方法*args用来将参数打包成tuple给函数体调用defargs_test(x,y,*args):print(x,y,args)arg args