First time here? Check out the FAQ!
answered 2014-10-10 09:45:07 +0100
A workaround (tested with Sage Cell Server):
var('x y') sol = [] for v in [x,y]: sol += solve(x + y == 0,v, solution_dict=True) sol
gives
[{x: -y}, {y: -x}]