Answers for "code to equation python"

2

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]
Posted by: Guest on December-04-2020
2

how to represent equation in Pytho

equation=5*x**5-4*x**3+4*x**2-6*x+1
Posted by: Guest on December-01-2021

Code answers related to "code to equation python"

Python Answers by Framework

Browse Popular Code Answers by Language