HTMLify
Dashboard
Temp Share
Shortlinks
Frames
API
Dashboard
Temp Share
Shortlinks
Frames
API
djdj - HTMLify profile
files of
/djdj/me/method/
bisection_method.py
/djdj/me/method/bisection_method.py
543 Views
0 Comments
from math import*
def fun(x):
return(x**3-4*x-9)
def bisection(x0,x1):
i=1
for _ in range(max):
x2 =