python sympy solve equation code example
Example 1: solve equation python
>>> from sympy.solvers import solve
>>> from sympy import Symbol
>>> x = Symbol('x')
>>> solve(x**2 - 1, x) #Your equation here
[-1, 1]
Example 2: sympy solve equation system
sol = solve((eq1, eq2),(x, y))
sol