0

How to solve 10//4

How to solve 10//4

29th May 2021, 2:24 AM
Learn with Harmeet Jasmeet
5 Réponses
+ 1
it is equal to 2 use your mind that why its 2 and do it yourself.
29th May 2021, 3:40 AM
NEZ
NEZ - avatar
0
You can solve this by going through Python course or trying it in code playground
29th May 2021, 3:24 AM
Atul [Inactive]
0
Ok thanks
29th May 2021, 3:41 AM
Learn with Harmeet Jasmeet
0
"//" gives you the quotient
29th May 2021, 4:10 AM
Eashan Morajkar
Eashan Morajkar - avatar
0
'//' is the whole division operator... 10//4 = 2 (with a rest of 2) because 2*4 = 8 and 8+2 = 10... it gives you the greater integer number wich fit 4 times in 10 (as next is 3, and 3*4 = 12) rest can be computed with the modulo operator '%' floating point division with '/' (10/4 = 2.5)
29th May 2021, 4:41 AM
visph
visph - avatar