017

**

Sending *args #

def func(one, two):
    print(f'two is {two}')


>>> func(*['a', 'b'])
two is b

order matters

Connections

Related tags and posts connected to this entry.