Posts by RiceGum • 21 points
1 post
- 
		2 votes1 answer326 viewsQ: Solve polynomial between two values intervalx = eval(input()) x = eval(input()) polinomio = 3*x**3- 5*x + 0.8 for x in range (x,x,0.5): print(polinomio) Traceback (Most recent call last): File…