modulo python example
Example 1: python mod function
#the modulus operator is % in Python
5 % 3
#returns remainder: 2
Example 2: how to use modulo in python
remainder = 31 % 10
#the modulus operator is % in Python
5 % 3
#returns remainder: 2
remainder = 31 % 10