iteration_utilities.
rmod
Returns op2 % op1.
op2 % op1
Get the remainder of these two operands.
Examples
Equivalent to lambda x, y: y % x:
lambda x, y: y % x
>>> from iteration_utilities import rmod >>> rmod(2, 5) 1
rfdiv
rmul