From e378b712f0ec7500c3cba918a776bb6f2ded59dd Mon Sep 17 00:00:00 2001 From: Domingo Moronta Date: Thu, 11 Oct 2018 22:29:55 -0700 Subject: [PATCH] Update index.md --- client/src/pages/guide/english/python/abs-function/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/pages/guide/english/python/abs-function/index.md b/client/src/pages/guide/english/python/abs-function/index.md index d72db5b0dc..1153f27971 100644 --- a/client/src/pages/guide/english/python/abs-function/index.md +++ b/client/src/pages/guide/english/python/abs-function/index.md @@ -15,7 +15,7 @@ The return value would be a positive number. Even if complex number is passed, i ```python print(abs(3.4)) # prints 3.4 print(abs(-6)) # prints 6 -print(abs(3 + 4j)) # prints 5, because |3 + 4j| = 5 +print(abs(3 + 4j)) # prints 5.0, because |3 + 4j| = 5 ``` 🚀 Run Code