In Python, we have the star (or \"*\" or \"unpack\") operator, that allows us to unpack a list for convenient use in passing positional arguments. For example:
Another way of unpacking a list:
val a :: b :: c :: _ = argList val z = ThreeValues(a, b, c)