Run
import math x = 8 y = 2.3 result = math.remainder(x, y) print('remainder() :', result)
Output