0
Floor division and modulo operator
What is floor division and modulo operator
2 Antworten
+ 1
Please use the search bar🔎
Floor division returns the result of a division with no remainder (an integer)
5 // 2 = 2
2 goes into 5 twice, with a remainder of 1
The modulo operator (%) returns the remainder of a division
5 % 2 = 1 because the remainder is 1
I hope this helps, please ask if you have further questions
+ 4
Floor division - Divides and returns the remainder after removing decimal
Modulus : returns the remainder
Mansi refer to this for learning floor division and modulus .
https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2273/
Thanks