First time here? Check out the FAQ!
answered 8 years ago
sage: function('f')(*(SR.symbol("x%s"%i) for i in range(n))) f(x0, x1, x2)
updated 8 years ago
There's a python trick to unpack an iterable into an argument list in a function call: