First time here? Check out the FAQ!
asked 4 years ago
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?