19 % 2 in python 1 point
Answers
Answered by
3
Answer:
19%2 = 1 in python...
Mod(%) represents remainder of the division in python.
19 ÷ 2 = 9, Remainder = 1
HOPE IT HELPS!!
Answered by
0
1
The modulo operation is a means to figure out how much of a division operation is left excess. The modulo operation, rather than returning the division result, returns the whole integer remainder. The term modulo is frequently used in mathematics to state that 2 separate mathematical objects can be considered comparable provided their difference is accounted for by a third factor.
Similar questions