In Python 3.0
5 // 2 floor division will return 2.
5 / 2 floating point division will return 2.5
# 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