The keyword-argument tag has no wiki summary.
3
votes
4answers
413 views
Can I use a dynamic mapping to unpack keyword arguments in Python?
Long story short, I want to call format with arbitrarily named arguments, which will preform a lookup.
'{Thing1} and {other_thing}'.format(**my_mapping)
I've tried implementing my_mapping like ...
2
votes
3answers
823 views
Setting the default value of a function input to equal another input in Python
Consider the following function, which does not work in Python, but I will use to explain what I need to do.
def exampleFunction(a, b, c = a):
...function body...
That is I want to assign to ...