First time here? Check out the FAQ!
answered 2021-05-27 12:05:08 +0100
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)