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
Why don't you use % ?
print 4 % 2 # 0