modulus functions in python explained code example
Example 1: what is modulus in python
# Modulus is the reminder of the 2 divisions, ex 25 % 2 = 1
#ie, 2*12 = 24 and the number is 25 so when we divide 25/2 the reminder is 1
print(25%2)
# Output = 1
#Hope you understood that, have a nice day :D
Example 2: python mod function
#the modulus operator is % in Python
5 % 3
#returns remainder: 2