Computer Science, asked by vivekanandvaidy2258, 1 year ago

Python program to find the square root using newton's method

Answers

Answered by alishabahl
1

Answer:

final_value = float(top) / 2

close = final_value - math.sqrt(x)

close_two = math.sqrt(x)

print "The guess is", final_value, "which is", close, "away from", close_two

main ()

Similar questions