# floor devision and modulo
def euclidean_division(x, y):
quotient = x // y
remainder = x % y
print(f"{quotient} remainder {remainder}")
euclidean_division(1, 7000)
# finds both in one function
remainder = 31 % 10
>>> 15 % 4
3
>>> 17 % 12
5
>>> 240 % 13
6
>>> 10 % 16
10
if i%2 == 0 :
print("the Number is Odd")
else:
print("the Number is even")