Let's say I have an equation:
x**2 + y**2 - 4 = 0
How can I see the circle using sympy, matplotplib or another python solution?
I know in sympy I can
from sympy import Plot
from sympy import Symbol
x = Symbol('x')
y = Symbol('y')
Plot(x**2 + y**2 - 4)
But then I get z = x**2 + y**2 - 4
, a 3D graph instead of the planar intersection. I understand there may be a need to solve the equation.