How to Solve Quadratic Equation using Python?
Answers
Answered by
0
☆☞ Here is ur answer ☜☆
✔✔ # Solve the quadratic equation ax**2 + bx + c = 0.
✔✔ # import complex math module.
✔✔ # To take coefficient input from the users.
✔✔ # a = float(input('Enter a: '))
✔✔ # b = float(input('Enter b: '))
✔✔ # c = float(input('Enter c: '))
✔✔ # calculate the discriminant.
✔✔ # find two solutions.
HOPE IT HELPS!
Answered by
0
hello!
☆☞ Here is ur answer ☜☆
✔✔ # Solve the quadratic equation ax**2 + bx + c = 0.
✔✔ # import complex math module.
✔✔ # To take coefficient input from the users.
✔✔ # a = float(input('Enter a: '))
✔✔ # b = float(input('Enter b: '))
✔✔ # c = float(input('Enter c: '))
✔✔ # calculate the discriminant.
✔✔ # find two solutions.
HOPE IT HELPS!
Similar questions