[issue19446] Integer division for negative numbers

Georg Brandl report at bugs.python.org
Wed Oct 30 08:30:18 CET 2013


Georg Brandl added the comment:

Hi Nitin,

"a // b" is defined as the floor division operation, same as what "math.floor(a / b)" gives: the largest integer <= a / b.

-7/2 is -3.5, the largest integer <= -3.5 is -4.

----------
nosy: +georg.brandl
resolution:  -> invalid
status: open -> closed

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue19446>
_______________________________________


More information about the Python-bugs-list mailing list