I come from a background in static languages. Can someone explain (hopefully through example) the real world advantages of using **kwargs over named arguments? To me it they seem to only make the function call more ambiguous. Thanks.
|
3
|
|||||||||
|
|
|
Real-world examples: Decorators - they're usually generic, so you can't specify the arguments upfront:
Places where you want to do magic with an unknown number of keyword arguments. Django's ORM does that, e.g.:
|
||
|
|
|
|
And here's another typical example:
|
||
|
|
|
|
Here's an example, I used in CGI Python. I created a class that took
The only problem is that you can't do the following, because
The solution is to access the underlying dictionary.
I'm not saying that this is a "correct" usage of the feature. What I'm saying is that there are all kinds of unforseen ways in which features like this can be used. |
|||
|
|
|
|
Another reason you might want to use
|
||
|
|
|
There are two common cases: First: You are wrapping another function which takes a number of keyword argument, but you are just going to pass them along:
Second: You are willing to accept any keyword argument, for example, to set attributes on an object:
|
||
|
|
|
|
You may want to accept nearly-arbitrary named arguments for a series of reasons -- and that's what the The most common reason is to pass the arguments right on to some other function you're wrapping (decorators are one case of this, but FAR from the only one!) -- in this case,
if all the names had to be known in advance, then obviously this approach just couldn't exist, right? And btw, when applicable, I much prefer this way of making a dict whose keys are literal strings to:
simply because the latter is quite punctuation-heavy and hence less readable. When none of the excellent reasons for accepting As for using
to:
Even with just two possibilities, and of the very simplest kind!!!, the lack of |
|||
|
|
|
One example is implementing python-argument-binders, used like this:
This is from the functools.partial python docs: partial is 'relatively equivalent' to this impl:
|
|||
|
|
|
|
|
||||||
|
