I would like to be able to take a list of unknown length in for function parameters like this:
With a list lis = [1, 2, 3, ...]
and a function def func(a, b, c, ...): ...
the elements of the list go into the function as individual parameters, func(1, 2, 3, ...)
*not func([1, 2, 3, ...])
Is this possible?