mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-01-14 05:05:59 +00:00
[python/es] include modulo and pow (#5226)
This commit is contained in:
parent
a556cdedce
commit
155b0175fa
@ -34,13 +34,18 @@ Es básicamente pseudocódigo ejecutable.
|
|||||||
# Sin embargo también tienes disponible división entera
|
# Sin embargo también tienes disponible división entera
|
||||||
34 // 5 # => 6
|
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
|
# Cuando usas un float, los resultados son floats
|
||||||
3 * 2.0 # => 6.0
|
3 * 2.0 # => 6.0
|
||||||
|
|
||||||
|
# Exponenciación
|
||||||
|
4 ** 3 # => 64
|
||||||
|
|
||||||
# Refuerza la precedencia con paréntesis
|
# Refuerza la precedencia con paréntesis
|
||||||
(1 + 3) * 2 # => 8
|
(1 + 3) * 2 # => 8
|
||||||
|
|
||||||
|
|
||||||
# Valores 'boolean' (booleanos) son primitivos
|
# Valores 'boolean' (booleanos) son primitivos
|
||||||
True
|
True
|
||||||
False
|
False
|
||||||
@ -49,7 +54,6 @@ False
|
|||||||
not True # => False
|
not True # => False
|
||||||
not False # => True
|
not False # => True
|
||||||
|
|
||||||
|
|
||||||
# Igualdad es ==
|
# Igualdad es ==
|
||||||
1 == 1 # => True
|
1 == 1 # => True
|
||||||
2 == 1 # => False
|
2 == 1 # => False
|
||||||
|
Loading…
Reference in New Issue
Block a user