Horje
python sympy solve equation equal to 0 Code Example
python sympy solve equation equal to 0
from sympy import *

x, y = symbols('x y') 

y=(x**2-2)/3*x

# solve the expression y (by default set equal to 0)
result = solve(y)

print(result)




Python

Related
maximizar ventana tkinter python Code Example maximizar ventana tkinter python Code Example
python create map with coordinates Code Example python create map with coordinates Code Example
pandas read csv no index Code Example pandas read csv no index Code Example
pandas not is in Code Example pandas not is in Code Example
numpy take out elements equal to zero Code Example numpy take out elements equal to zero Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8