Regular division gives you decimals: . But integer division throws away the decimal part and keeps only the whole number: .
In most languages, if both operands are integers, division is integer division. Python uses for explicit integer division. C++ and Java do it automatically when both operands are int types.
This comes up constantly. If you have items and want to split them into groups of , the number of full groups is .