Is there a modulo function in the Python math library?
math
Isn\'t 15 % 4, 3? But 15 mod 4 is 1, right?
15 % 4
15 mod 4
you can also try divmod(x, y) which returns a tuple (x // y, x % y)
(x // y, x % y)