016

Copy this post

Recieving **kwargs #

def funnc(**kwargs):
    print(kwargs) # kwargs are a dictionary!

>>> func(one='a', two='b')

<!--markata-attribution-->
{'one': 'a', 'two': 'b'}