Ejemplo 1: cómo calcular la división con resto en python
Modulo Operator (Python)
x % y
Example: 9 % 2
9 ÷ 2 = 4 R 1
9 % 2 = 1
Ejemplo 2: módulo de pitón
# the 1st technique is standard way of calculating modulus
# the 2nd technique is doing samething using // operator
print(10%7)
print(10 - (7 * (10//7)))
# Output:
# 3
# 3
Ejemplo 3: función mod de Python
#the modulus operator is % in Python
5 % 3
#returns remainder: 2
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)