how would I pass an unknown number of parameters into a function? I have a function defined in the following way
def func(x, *p):
return ...
I'm trying to pass in a list of values to use as parameters. I tried using a list and a tuple but the function always returns zero. Has anyone got any advice? Thanks