Write a Python program to solve quadratic equation
A quadratic equation is a second-degree polynomial equation of the form: ax2+bx+c=0 where a, b, and c are constants, and x represents the unknown variable. In this tutorial, we will write a Python program to find the roots of a…