What is the correct name for operator *, as in function(*args)? unpack, unzip, something else?
*
function(*args)
I call it "positional expansion", as opposed to ** which I call "keyword expansion".
**