怎样用Python算出方程 ax’+b=0(a > 0,b< 0)较大的近似解?
from math import *之后sqrt(b/a)
from math import*之后sqrt(-b/a)
import math之后-sqrt(b/a)
import math之后-sqrt(-b/a)