import mathdef sqrt(x): y = x while abs(y * y - x) > 1e-6: y = (y + x / y) / 2 return yprint(sqrt(5))print(math.sqrt(5))