From 155b0175fab9efb39a4ad6f1aea55d5abffd0413 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustavo=20Adolfo=20Mej=C3=ADa=20S=C3=A1nchez?= Date: Fri, 10 Jan 2025 08:02:13 -0500 Subject: [PATCH] [python/es] include modulo and pow (#5226) --- es/python.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/es/python.md b/es/python.md index 0086e00e..2e5517ce 100644 --- a/es/python.md +++ b/es/python.md @@ -34,13 +34,18 @@ Es básicamente pseudocódigo ejecutable. # Sin embargo también tienes disponible división entera 34 // 5 # => 6 +% El operador módulo +34 % 5 # => 4 # es el residuo de la división: 34 - (5 * 6) = 4 + # Cuando usas un float, los resultados son floats 3 * 2.0 # => 6.0 +# Exponenciación +4 ** 3 # => 64 + # Refuerza la precedencia con paréntesis (1 + 3) * 2 # => 8 - # Valores 'boolean' (booleanos) son primitivos True False @@ -49,7 +54,6 @@ False not True # => False not False # => True - # Igualdad es == 1 == 1 # => True 2 == 1 # => False