Hola usuario de nuestro sitio, hallamos la solución a tu interrogante, desplázate y la encontrarás a continuación.
Ejemplo 1: cómo modular en python
# let say "a" is our varable then,# and that is a is 25
a %10# then this returns 5 because % gets the remainder of a / 10
Ejemplo 2: módulo de Python
# the 1st technique is standard way of calculating modulus# the 2nd technique is doing samething using // operatorprint(10%7)print(10-(7*(10//7)))# Output:# 3# 3
Ejemplo 3: función mod de python
#the modulus operator is % in Python5%3#returns remainder: 2
Ejemplo 4: mod en python
x1 =int(input())
y1 =int(input())
x2 =int(input())
y2 =int(input())if(((x2-x1)%2=1and(y2-y1)%2=1)or((x2-x1)%2=0and(y2-y1)%2=0)):print('YES')else:print('NO')
valoraciones y reseñas
Recuerda que tienes concesión de decir si diste con el arreglo.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)