Tagged Questions
1
vote
1answer
287 views
Python multiprocessing keyword arguments
Here is a simple example of using keyword arguments in a function call. Nothing special.
def foo(arg1,arg2, **args):
print arg1, arg2
print (args)
print args['x']
args ={'x':2, 'y':3}
...