Python fmod(x,y) function returns x % y. It's a method of math module.
fmod(x,y)
math
>>> import math >>> math.fmod(3,2)
1.0
>>> math.fmod(-3,2)
-1.0
>>> math.fmod(-3.2,2)
-1.2
>>> math.fmod(3.2,2)
1.2