多元二次方程 python_Python 二次方程
生活随笔
收集整理的這篇文章主要介紹了
多元二次方程 python_Python 二次方程
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
Python 二次方程
以下實例為通過用戶輸入數(shù)字,并計算二次方程:
# -*- coding: UTF-8 -*-
# Filename :test.py
# author by : www.xiaoushuo.com
# 二次方程式 ax**2 + bx + c = 0
# a、b、c 用戶提供
# 導入 cmath(復雜數(shù)學運算) 模塊
import cmath
a = float(input('輸入 a: '))
b = float(input('輸入 b: '))
c = float(input('輸入 c: '))
# 計算
d = (b**2) - (4*a*c)
# 兩種求解方式
sol1 = (-b-cmath.sqrt(d))/(2*a)
sol2 = (-b+cmath.sqrt(d))/(2*a)
print('結果為 {0} 和 {1}'.format(sol1,sol2))
以上代碼執(zhí)行輸出結果為:
$ python test.py
輸入 a: 1
輸入 b: 5
輸入 c: 6
結果為 (-3+0j) 和 (-2+0j)
該實例中,我們使用了 cmath (complex math) 模塊的 sqrt() 方法 來計算平方根。
總結
以上是生活随笔為你收集整理的多元二次方程 python_Python 二次方程的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: python supper_python
- 下一篇: python拼接sql语句_【Pytho