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
I don't think you're fully grasping modulo. a % b and a mod b are just two different ways to express modulo. In this case, python uses %. No, 15 mod 4 is not 1, 15 % 4 == 15 mod 4 == 3.
a % b
a mod b
%
1
15 % 4 == 15 mod 4 == 3