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