015

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 *args


def funnc(*args):
    print(args) # args are a list!

>>> func('a', 'b', 'c')
['a', 'b', 'c']

order matters