Finding multiples with python

Couldn’t decide where to ask this question so, here it is… Is there a way (surely there is) to use python to recognize when a timer property hits multiples of 5 or any other number for that matter? If so I would be greatfull to know. Thanks for any replies…

if int(timervalue) % 5 == 0:
is probably what you could use :wink:

Thank you for the speedy and super helpfull reply. That’s exactly what I needed to know!