In the following method calls, what does the * and ** do for param2?
def foo(param1, *param2):
def bar(param1, **param2):
|
|
|
The *args and **kwargs ist a common idiom to allow arbitrary number of arguments to functions as described in the section more on defining functions in the the python documentation. The *args will give you all funtion parameters a a list:
The **kwargs will give you all keyword arguments except for those corresponding to a formal parameter as a dictionary.
Both idioms can be mixed with normal arguments to allow a set of fixed and some variable arguments:
An other usage of the *l idiom is to unpack argument lists when calling a function.
In the upcoming python 3.0 it will be possible to use *l on the left side of an assignment (Extended Iterable Unpacking):
|
||||
|
It's also worth noting that you can use * and ** when calling functions as well. This is a shortcut that allows you to pass multiple arguments to a function directly using either a list/tuple or a dictionary. For example, if you have the following function:
You can do things like:
|
||||
|
|
|
The single * means that there can be any number of extra positional arguments. The double ** means there can be any number of extra named parameters. With the following code:
the output is
|
|||||
|
|
Also, it's a good idea not to populate your interface signatures with these conventions. It's okay to use them for private implementations, but for a public API, they can often obscure meaning. They're basically advertising, "Hey, this function/method accepts anything!". |
|||||
|
|
Peter's answer is exceptional. I will only add that Python does not have function overloading like other languages, so to achieve the same effect, a programmer can use the *args and **kwargs conventions to allow the same function to be called with different inputs, similar to overloading. |
|||
|
|
|
From the Python documentation:
|
|||
|
|
|
I have to disagree when you say it's rare it's the only answer to a problem. Actually, I have one problem right now which I believe could be very well solved using **kwargs. I have a class constructor which takes 20 parameters, 16 of them optional. Using **kwargs, I'd have only 5 parameters on the function definition and the effect would be the same with a much more organized code. Of course, it's important that, when it's used, the user comments the whereabouts of the code to let possible readers know the reason this solution is being used. |
|||||
|
|
I second Zac, from a style and clarity point of view, using named function/method arguments is superior. If you use pyLint, it will yell at you whenever you get tempted by the dark-side of "* magic". That's not to say it's not necessary and/or useful, it's just that (in my opinion) it's rare it's the only answer to your problem. |
|||
|
|
|
|
||||
|
|