I am learning to use positional arguments in python and also trying to see how they work when mixed up with default arguments:-
def withPositionalArgs(ae=9,*args
I think we should make the distinction of default values vs. passing in arbitrary arguments/key-value pairs. The behaviour without default values is the same:
def f(ae,*args, **kwargs):
print 'ae = ', ae
print 'args = ', args
print 'kwargs = ', kwargs
The way we have written this means that the first argument passed into f
in the tuple args
, that is f(1,2,3,a=1,b=2)
(the sequence goes explicit arguments, *args, **kwargs.) Here: ae = 1, args = (2,3), kwargs = {'a': 1, 'b': 2}
.
If we try to pass in f(1,2,3,a=1,ae=3)
we are thrown a TypeError: f() got multiple values for keyword argument 'ae'
, since the value of ae
is attempted to be changed twice.
.
One way around this is to only set ae
when it is explicitly prescribed, we could (after the def line):
def g(*args, **kwargs):
kwargs, kwargs_temp = {"ae": 9}, kwargs
kwargs.update(kwargs_temp) #merge kwargs into default dictionary
and this time g(1,2,3,a=1,ae=3)
sets args=(1,2,3), kwargs={a=1,ae=3}
.
However, I suspect this is not best practice...