gpt4 book ai didi

python - 二次根函数中的数学域错误

转载 作者:太空宇宙 更新时间:2023-11-04 07:36:46 25 4
gpt4 key购买 nike

我的代码:

def root1(a,b,c):
return (-b+sqrt((b**2)-4*a*c))/2*a
def root2(a,b,c):
return (-b-sqrt((b**2)-4*a*c))/2*a

我遇到了一个ValueError: math domain error,我不知道为什么。

最佳答案

大概你有类似的东西

from math import sqrt

代替导入,使用

from cmath import sqrt

cmath 中的sqrt 函数可以处理否定参数。

例如,

>>> from math import sqrt
>>> sqrt(-4)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: math domain error

>>> from cmath import sqrt
>>> sqrt(-4)
2j

关于python - 二次根函数中的数学域错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33054093/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com