018

Advertisement

Your Ad could be here. I want to connect my readers to relavant ads. If you have a product targeted at developers, let's talk. [email protected]

Sending **kwargs


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

>>> func(**{'one':'a', 'two':'b')
{'one': 'a', 'two': 'b'}