From 1bab86f5f74760d990a0f1a99d70907fdb952aa3 Mon Sep 17 00:00:00 2001 From: Joan Chirinos Date: Tue, 13 Aug 2019 15:49:37 -0400 Subject: [PATCH] Update index.md (#31814) translated print statements --- guide/spanish/python/abs-function/index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/guide/spanish/python/abs-function/index.md b/guide/spanish/python/abs-function/index.md index f0d1c8d4a1..b02f79dc78 100644 --- a/guide/spanish/python/abs-function/index.md +++ b/guide/spanish/python/abs-function/index.md @@ -15,9 +15,9 @@ El valor de retorno sería un número positivo. Incluso si se pasa un número co ## Ejemplo de código ```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.4)) # imprime 3.4 + print(abs(-6)) # imprime 6 + print(abs(3 + 4j)) # imprime 5, porque |3 + 4j| = 5 ``` [🚀 Ejecutar Código](https://repl.it/CL8k/0) @@ -26,4 +26,4 @@ print(abs(3.4)) # prints 3.4 ### Fuentes -1. [La matematica es divertida. Accedido: 25 de octubre de 2017](https://www.mathsisfun.com/numbers/absolute-value.html) \ No newline at end of file +1. [La matematica es divertida. Accedido: 25 de octubre de 2017](https://www.mathsisfun.com/numbers/absolute-value.html)