用Python程序求解二次方程式
当我们已给出系数a,b和c时,用python程序计算二次方程的根值。
另外,说明一下,下面的示例,需要你有一定的python基础,不然对于新手来说,会难以理解。
因此,这篇文章,适合于有一定python学习基础的小伙伴。
现在,我们直接来解决方程式
二次方程的标准形式为:
ax2 + bx + c = 0,其中a,b和c是实数,a≠0
好了,我们现在用代码来实现求解,如下所示:
# Solve the quadratic equation ax**2 + bx + c = 0
# import complex math moduleimport cmath
a = 1b = 5c = 6
# calculate the discriminantd = (b**2) - (4*a*c)
# find two solutionssol1 = (-b-cmath.sqrt(d))/(2*a)sol2 = (-b+cmath.sqrt(d))/(2*a)
print('The solution are {0} and {1}'.format(sol1,sol2))
输出结果
Enter a: 1Enter b: 5Enter c: 6The solutions are (-3+0j) and (-2+0j)
好了,在上面的代码中,我们导入cmath模块来执行复杂的平方根求解。首先,我们计算判别式,然后找到二次方程的两个解。
另外,我们可以在上述程序中更改a,b和c的值来计算其他值的平方根。
我们学习编程就是这样子,我们是为了解决实际问题去学习,不能为了学习而
学习.
希望这篇文章对你们有用,
欢迎在下方讨论留言,
谢谢关注.
领取专属 10元无门槛券
私享最新 技术干货