remainder operator in python code example
Example 1: how to get the remainder in python
a = 10
b = 3
c = a % b
print(c) # Prints 1
Example 2: python modulus
# the 1st technique is standard way of calculating modulus
# the 2nd technique is doing samething using // operator
print(10%7)
print(10 - (7 * (10//7)))
# Output:
# 3
# 3
Example 3: python mod function
#the modulus operator is % in Python
5 % 3
#returns remainder: 2