015 === ** Date: June 14, 2020 ## Recieving `*args` ``` python def funnc(*args): print(args) # args are a list! >>> func('a', 'b', 'c') ['a', 'b', 'c'] ``` **order matters**