from sympy import * from IPython.display import display init_printing() var('a:z') eq = Eq(a*x**2+b*x+c,0) display(eq) solve(eq,x)