- 1
What is the meaning of double slash==//
2 ответов
+ 3
Talking for python 3//9 is a floor division. This means that the result is an integer value without any decimal places. So the result here is 0.
If you use a regular divison, the result is a float value. 3/9 = 0.3333...
+ 1
Ohh thanku that helped me alot