Computer Science

Write following expressions in Python:

Write following expressions in Python: x = (-b + √(b² - 4ac)) / 2a

Python Data Handling

66 Likes

Answer


x = (-b + math.sqrt(b * b - 4 * a * c)) / (2 * a)

Answered By

35 Likes


Related Questions