This code
var("a b")
assume(a, "real")
equation=[a+b==0]
s=solve(equation, a, b)
print(s)
causes an AttributeError :
AttributeError: 'list' object has no attribute 'lhs'
The problem comes from the assumption in line 2. Can somebody explain?
| 1 | initial version |
This code
var("a b")
assume(a, "real")
equation=[a+b==0]
s=solve(equation, a, b)
print(s)
causes an AttributeError :
AttributeError: 'list' object has no attribute 'lhs'
The problem comes from the assumption in line 2. Can somebody explain?
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.