First time here? Check out the FAQ!
answered 2020-10-15 08:47:12 +0100
To create a tuple of variables x0,...,xk you can use var("x", n=k), e.g.
var("x", n=k)
sage: var("x", n=10) (x0, x1, x2, x3, x4, x5, x6, x7, x8, x9)