0
What is floor devison amd modula opretor?
some one help me please
2 Respostas
+ 8
Floor division (Integer division):
33 // 6
-> 5 (The result (5.5) gets rounded to its lower value which is 5)
Modulus:
19 % 3
-> 1 (It gives us the remainder)
More info here:
https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2273/
+ 1
thanks....