keeping an integer value

Hi. I’m sure this is just basic python stuff, but I need to ask. How do you make sure that, no matter what calculations are done on a variable, it always stays an integer and does not become a decimal number?

Just convert the result to an int.

myInt = int( crazy calc )

Aha. Thank you sir.