Skip to content

Instantly share code, notes, and snippets.

@ebovio
Created March 30, 2017 16:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ebovio/964ad669084bdebce0ce59124026e7b0 to your computer and use it in GitHub Desktop.
Save ebovio/964ad669084bdebce0ce59124026e7b0 to your computer and use it in GitHub Desktop.
def sqrt(x, eps=1e-6):
r = x * 1
while abs(x - r * r) > eps:
r = 0.5 * (r + x / r)
return r
#Main program below
w=float(input("Write the first number"))
print(sqrt(w))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment