rest of a division python code example
Example 1: how to calculate division with remainder in python
Modulo Operator (Python)
x % y
Example: 9 % 2
9 ÷ 2 = 4 R 1
9 % 2 = 1
Example 2: resto division python
>>> 10 % 3
1
>>> 10 % 4
2
>>> 10 % 5
0
>>> 10.5 % 3
1.5