def équation_cercle(centre,rayon): (Cx,Cy) = centre R = rayon return "x²+y²+({})×x+({})×y = {}".format(-2*Cx,-2*Cy,R**2-Cx**2-Cy**2)