是否存在使用未指定数量的参数的python函数,例如
myfunc(a, b, c)
myfunc(a, b, c, d, e)
哪两个都有效?
答案 0 :(得分:7)
myfunc(* args,** kw)
* args - 需要N个参数
** kw - 需要字典(未指定深度)
In [1]: def myfunc(*args):
...: print args
...:
In [2]: myfunc(1)
(1,)
In [3]: myfunc(1,2,3,4,5)
(1, 2, 3, 4, 5)