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