0
How to solve 10//4
How to solve 10//4
5 Réponses
+ 1
it is equal to 2
use your mind that why its 2 and do it yourself.
0
You can solve this by going through Python course or trying it in code playground
0
Ok thanks
0
"//" gives you the quotient
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)