+ 1
Whats the meaning of floor division.//
6 ответов
+ 17
3//2=1 and not 1.5... maybe!!!
+ 17
It returns int value of lowest divison...
eg:- 3/2 is 1.5
but 3//2 is 1
+ 6
In python // is the floor operation where div result is rounded to the next lower integer:
5//2 is 2 but -5//2 is -3
+ 1
not understable
+ 1
ohhh.. only the integer part. ok. ok
+ 1
thank qew@ sid