How to print the Equation x^2+y^2=34 using Python in Jupyter.org
from sympy import *
import matplotlib.pyplot as plt
x,y=Symbols('x,y')
y=(34-x**2)**1/2
plt.plot(x,y)
But I am really unsure about my code. I also don’t have desktop to run the code.
Please help me out. I am very very weak in Python. But still I included what I have tried.