if no remainder syntax 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 mod function
#the modulus operator is % in Python
5 % 3
#returns remainder: 2
a = 10
b = 3
c = a % b
print(c) # Prints 1
#the modulus operator is % in Python
5 % 3
#returns remainder: 2