Result Size: 625 x 571
โ€‹x
 
# Import math Library
import math
โ€‹
# Return the remainder of x/y
print (math.remainder(9, 2))
print (math.remainder(9, 3))
print (math.remainder(18, 4))
โ€‹
1.0
0.0
2.0