python中args,*args,**kwargs的区别
args 表示参数是一个变量
*args 表示参数是一个tuple
**kwargs 表示参数是一个dict
比如
def function(arg,*args,**kwargs): print(arg,args,kwargs) function(6,7,8,9,a=1, b=2, c=3)
结果为 6 (7, 8, 9) {'a': 1, 'b': 2, 'c': 3}
本文只发表于博客园和tonglin0325的博客,作者:tonglin0325,转载请注明原文链接:https://www.cnblogs.com/tonglin0325/p/5194094.html