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