From e29bde38c96e8e4b43600b079b64a0645483de95 Mon Sep 17 00:00:00 2001 From: Adam Corbin Date: Tue, 29 Jan 2019 08:31:18 -0500 Subject: [PATCH] #1 {Code} - Fixing square_root function Missing returning the value --- 5_Software/math_lib.py | 1 + 1 file changed, 1 insertion(+) diff --git a/5_Software/math_lib.py b/5_Software/math_lib.py index 2095a38..e2329ac 100644 --- a/5_Software/math_lib.py +++ b/5_Software/math_lib.py @@ -32,3 +32,4 @@ def square_root(x): else: right = guess guess = (right+left)/2.0 + return guess