Sending *args #
def func(one, two):
print(f'two is {two}')
>>> func(*['a', 'b'])
<!--markata-attribution-->
two is b
order matters
**
*args #def func(one, two):
print(f'two is {two}')
>>> func(*['a', 'b'])
<!--markata-attribution-->
two is b
order matters