First time here? Check out the FAQ!
answered 2018-02-19 22:37:44 +0100
You should use the star operator to unpack the tuple myvars, i.e. write the function argument as *myvars:
myvars
*myvars
sage: myvars = var('x y z') sage: f = function('f')(*myvars) sage: f f(x, y, z)