Write a program quadratic_formula.py that determines solutions to a quadratic equation. The main program has the user enter three coefficients for a quadratic formula of the form ax2 + bx + c = 0. The program then calls a function get_solutions which
a, b, and c as parametersdisc = b^2 - 4 * a * cNone if the discriminant is < 0