python123求解一元二次方程_Python实现解一元二次方程(蔡白菜原创)
解一元二次方程有点太烦了 就想用算法实现平均号是16毫秒 占用空间3MB至少要Python3.6运行环境我的头发都好好的awa代码(蔡白菜原创):import mathdef root_of_square(a,b,c):'''solve the quadratic equation'''discr=pow(b,2)-4*a*cif a!=0 and discr>0:x1=(-b+math....