| 1 | initial version |
You should use the star operator to unpack the tuple myvars, i.e. write the function argument as *myvars:
sage: myvars = var('x y z')
sage: f = function('f')(*myvars)
sage: f
f(x, y, z)
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.