Bisection Method
AI-enhanced title
f = input("f(x) = ")a = float(input("a = "))b = float(input("b = "))t = float(input("t = "))Bisection(f, a,b,t)