Possible Duplicate:
How do you check whether a number is divisible by another number (Python)?
so I'm writing up a "stopwatch game" in python for a course I'm doing, and I want it so that when the timer stops on a whole number, the player receives a point.
I figure that a "whole number" will be a multiple of 10, as the format would be something like this a;bc:d, and the timer is running at a tenth of a second.
What I need your help for is how would I go about saying, "Oh hey, if he stops on a multiple of 10, give him a point".
I cannot for the life of me figure out how to put specify a multiple of 10.