We now have a float result when two integers are divided in the same mannor
as 2.4 or 2.5.
I can handle that and use the Floor division but a simple question.
Why in the world would you round down the last presented digit to a 6
instead of just leaving it along as an 8.
For some reason rounding down for a float in Python does not seem correct.
IDLE 3.0a4
3.5784576525317 586e+46
357845765253175 880873143675043 836106634818393 27
^
^|
357845765253175 860000000000000 000000000000000 00 == 3.5784576525317 586e+46
as 2.4 or 2.5.
I can handle that and use the Floor division but a simple question.
Why in the world would you round down the last presented digit to a 6
instead of just leaving it along as an 8.
For some reason rounding down for a float in Python does not seem correct.
IDLE 3.0a4
>>1234567890123 456789012345678 901234567890123 4567890/345
>>1234567890123 456789012345678 901234567890123 4567890//345
^
^|
357845765253175 860000000000000 000000000000000 00 == 3.5784576525317 586e+46
Comment