0
Project problem
Write a program using Python that finds the solutions to the following formula with 1 decimal place accuracy. -10x^2+30x-20 > 0 I'm having a very hard time coming up with a result for this. I'm relatively new to coding and this is really giving me a hard time. Any help at all would be greatly appreciated. Thanks!
3 Answers
+ 1
so, we have to find the value of x for which the equation=0?
+ 1
try taking the input as a string. then separate the coefficients of x^2, x and the constant term. then use quadratic formula to get the roots.