017 === ** Date: June 14, 2020 ## Sending `*args` ``` python def func(one, two): print(f'two is {two}') >>> func(*['a', 'b']) two is b ``` **order matters**