Sympy python circumference
- by Mattia Villani
I need to display a circumference. In order to do that I thought I could calculata for a lot of x the two values of y, so I did:
import sympy as sy
from sympy.abc import x,y
f = x**2 + y**2 - 1
a = x - 0.5
sy.solve([f,a],[x,y])
and this is what I get:
Traceback (most recent call last):
File "<input>", line 1, in <module>
File…