First time here? Check out the FAQ!
answered 2013-02-28 05:46:46 +0100
In your case you can use your own function:
def show_result(sol): L = [s.rhs() for s in sol[0] ] print ' %s < %s < %s ' %(min(L),sol[0][0].variables()[0],max(L) ) show_result(solve(x^2-4<0,x))