对于一个定义了不定长参数的函数
def func(a,b,*args,**kargs):
pass
我们调用的时候应该
func(a,b,c,d,e {"k":1})
不可以func(1,2,(), {}) 这样写不对