Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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
 
PREVIOUS NEXT
Tagged: #python #modulus
ADD COMMENT
Topic
Name
8+5 =