args 表示参数是一个变量
*args 表示参数是一个tuple
**kwargs 表示参数是一个dict
比如
1 | def function(arg,*args,**kwargs): |
结果为 6 (7, 8, 9) {‘a’: 1, ‘b’: 2, ‘c’: 3}
args 表示参数是一个变量
*args 表示参数是一个tuple
**kwargs 表示参数是一个dict
比如
1 | def function(arg,*args,**kwargs): |
结果为 6 (7, 8, 9) {‘a’: 1, ‘b’: 2, ‘c’: 3}