python get remainder code example

Example 1: how to get the remainder in python

a = 10
b = 3

c = a % b
print(c) # Prints 1

Example 2: how to modulus in python

# let say "a" is our varable then,
# and that is a is 25
a % 10
# then this returns 5 because % gets the remainder of a / 10

Example 3: 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 4: 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