I'm trying to do some calculations in my python script but i'm getting some weird results. For example:
0.03 // 0.01
>>> 2.0
If I upscale the numbers I get the expected results:
3.0 // 1.0
>>> 3.0
I'm pretty sure that the answer for the first code snippet should be 3.0
and not 2.0
. Can someone explain me why this is happening and how to fix it?