Python Examples
Run
import math x = 5 y = math.inf result = math.fmod(x, y) print('fmod(x, y) :', result)
Output