First time here? Check out the FAQ!
answered 10 years ago
It's a Python list:
sage: sol=solve(x^2==1,x) sage: sol[0] x == -1 sage: sol[1] x == 1
updated 10 years ago
sage: sol=solve(x^2==1,x) sage: sol [x == -1, x == 1] sage: sol[0] x == -1 sage: sol[1] x == 1