Possible Duplicate:
*args and **kwargs?
I know the structure *var
def fn(*var):
pass
which if the analoguous of .
var of scheme
or va_args of c
.
Now I met the amazing structure
def fn(**list):
pass
which is useful to pass to fn the names of variables and values, as a dictionary (with no analogous in scheme).
Is there some structure in python with 3 asterisks ?
def fn (***variable)
What is the general meaning of asterisk
+ variable
in python ?