用python写一个程序 用牛顿迭代法求一个数的三次方根
时间: 2023-04-09 14:03:49 浏览: 170
用python实现的newton迭代
可以的,以下是Python代码:
def cube_root(num):
x = num
while True:
fx = x**3 - num
fpx = 3*x**2
x = x - fx/fpx
if abs(fx) < 1e-6:
break
return x
print(cube_root(27)) # 输出 3.0
阅读全文