Recieving **kwargs
def funnc(**kwargs): print(kwargs) # kwargs are a dictionary! >>> func(one='a', two='b') {'one': 'a', 'two': 'b'}
**kwargs
def funnc(**kwargs): print(kwargs) # kwargs are a dictionary! >>> func(one='a', two='b') {'one': 'a', 'two': 'b'}