Unpacks the contents of a dictionary into the function call.
function(**dict)
- dict
- The dictionary containing pairs of keyword arguments and their values.
#TODO
#TODO
>>> def add(a=0, b=0):
... return a + b
...
>>> d = {'a': 2, 'b': 3}
>>> add(**d)
5#TODO