python 二次方程

2021-09-16 12:09:47 字數 1375 閱讀 5079

匯入 cmath模組,計算複雜數**算

eg:我們計算二次方程式 ax**2 + bx + c = 0

**如下:

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('結果為 和 '.format(sol1,sol2))

看執行結果:

但是如果輸入0會報錯,如下:

可以完善一下**:

import math

a = float(input('輸入 a: '))

b = float(input('輸入 b: '))

c = float(input('輸入 c: '))

d = (b**2) - (4*a*c)

if a==0 and b==0 and c==0 :

print("有無窮個解")

elif d >= 0:

x1 = (-b-d/(2*a))

x2 = (-b+d/(2*a))

print('結果為:%.2f,%.2f'%(x1,x2))

else:

print("無解")

為了用例更完善,也可以加乙個函式,如果你輸入為字元轉化為數字:

import math

import unicodedata

def is_number(s):

try:

float(s)

return true

except valueerror:

pass

try:

unicodedata.digit(s)

return true

except (typeerror, valueerror):

pass

return false

多元二次方程 python Python 二次方程

python 二次方程 以下例項為通過使用者輸入數字,並計算二次方程 coding utf 8 filename test.py author by www.xiaoushuo.com 二次方程式 ax 2 bx c 0 a b c 使用者提供 匯入 cmath 複雜數 算 模組 import cm...

一元二次方程

作 者 a42 覃燕玲 完成日期 2014年 10 月 25 日 版 本 號 v1.0 問題描述 建立乙個程式解平方根 輸入描述 ax 2 bx x 0 a o 程式輸出 平方根 using system using system.collections.generic using system.l...

一元二次方程

一 知識要點 一元二次方程和一元一次方程都是整式方程,它是初中數學的乙個重點內容,也是今後學習數學的基 礎。一元二次方程的一般形式為 ax 2 2為次數,即x的平方 bx c 0,a 0 它是只含乙個未知數,並且未知數的最高次數是2 的整式方程。解一元二次方程的基本思想方法是通過 降次 將它化為兩個...