What is the correct name for operator *, as in function(*args)? unpack, unzip, something else?
*
function(*args)
The Python Tutorial simply calls it 'the *-operator'. It performs unpacking of arbitrary argument lists.