+ 1
why it producing float value for the both given integer value multiplication
Float o/p ?
4 Answers
+ 3
if you do 10/2 you get an float
if you do 10//2 you get an int
if you do round(10/2) you get an int
(floor and ceil of course too)
0
Ohh really ?
0
Why double slash do that ..
What's the diff