This article mainly introduces the method of solving the square root of Python, which involves the skills of Python mathematical operations and has some reference value. if you need it, refer to the example below to illustrate the method of solving the square root of Python. Share it with you for your reference. The details are as follows:
This is mainly adapted from the content of. Calculate the square root based on the newton method. The code is as follows:
#! /Usr/bin/pythondef sqrt_iter (guess, x): if (good_enough (guess, x): print guess else: sqrt_iter (improve (guess, x), x) def improve (guess, x): return average (guess, x/guess) def average (x, y): return (x + y)/2def good_enough (guess, x ): if (abs (guess * guess-x) <0.0001): return True else: return Falsedef sqrt_oliver (x): sqrt_iter (1.0, x) sqrt_oliver (5)
I hope this article will help you with Python programming.