表达式求和

a=5
b=8
c=3
m=pow(pow(b,2)-4*a*c,0.5)
x=(-b+m)/2/a
print("{}".format(x))
原文地址:https://www.cnblogs.com/670ling/p/12589937.html