2
votes
Passing a dictionary to a function in python as keyword parameters
In python, this is called "unpacking", and you can find a bit about it in the tutorial. The …
-1
votes
Loop function parameters for sanity check
def func(x='', y='', z='hooray!'):
print x, y, z
In [2]: f('test')
test hooray!
In [3]: f('test', 'and')
test and hooray!
In [4]: f('test', 'and', 'done!')
test and done!
…
