Hi,

Two examples:

var('x1,x2')
y=[x1,x2]
opl=solve([x1^2==4,x2^2==9],y,solution_dict=True)
print opl
[{x2: -3, x1: -2}, {x2: -3, x1: 2}, {x2: 3, x1: -2}, {x2: 3, x1: 2}]

var('x1')
y=[x1]
opl=solve([x1^2==4],y,solution_dict=True)
print opl
Traceback (click to the left of this block for traceback)
...
TypeError: [x1] is not a valid variable.

In both cases y is a list.

Roland

-- 
To post to this group, send email to sage-support@googlegroups.com
To unsubscribe from this group, send email to 
sage-support+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/sage-support
URL: http://www.sagemath.org

Reply via email to