017 2020-06-14 Waylon Walker Learning in Public @_WaylonWalker edit✏️ Sending *args def func(one, two): print(f'two is {two}') >>> func(*['a', 'b']) two is b order matters