016

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]

Recieving **kwargs


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

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