Answers for "python mod function"

1

mod in python

x1 = int(input())
y1 = int(input())
x2 = int(input())
y2 = int(input())

if( ( (x2-x1) % 2 = 1 and (y2-y1) % 2 = 1 ) or ( (x2-x1) % 2 = 0 and (y2-y1) % 2 = 0) ):
    print('YES')
else:
    print('NO')
Posted by: Guest on February-08-2021
2

what is modulus in python

# Modulus is the reminder of the 2 divisions, ex 25 % 2 = 1
#ie, 2*12 = 24 and the number is 25 so when we divide 25/2 the reminder is 1

print(25%2)
# Output = 1
#Hope you understood that, have a nice day :D
Posted by: Guest on October-05-2020
-1

modin python

import modin.pandas as pd
Posted by: Guest on July-15-2021

Python Answers by Framework

Browse Popular Code Answers by Language