Python program to find the square root using newton's method
Answers
Answered by
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
Math,
7 months ago
Math,
7 months ago
Physics,
7 months ago
Computer Science,
1 year ago
English,
1 year ago