First time here? Check out the FAQ!
answered 4 years ago
A single argument consisting of a list or a tuple is not accepted as input. Only keyword arguments or n positional arguments (but not both) are accepted. To pass n positional arguments, you can do f(*a).
n
f(*a)