vote up 13 vote down star

Is there a benefit to using one over the other? They both seem to return the same results.

>>> 6/3
2
>>> 6//3
2
flag

66% accept rate

8 Answers

vote up 36 vote down check

In Python 3.0, 5 / 2 will return 2.5 and 5 // 2 will return 2. The former is floating point division, and the latter is floor division, sometimes also called integer division.

In Python 2.2 or later in the 2.x line, there is no difference for integers unless you perform a from __future__ import division, which causes Python 2.x to adopt the behavior of 3.0

Regardless of the future import, 5.0 // 2 will return 2.0 since that's the floor division result of the operation.

You can find a detailed description at http://www.python.org/doc/2.2.3/whatsnew/node7.html

link|flag
1  
You can do 'from future import division' in python 2.5. – John Fouhy Oct 8 '08 at 22:37
Good point; I updated my response to say "2.5 or later". – Eli Courtwright Oct 9 '08 at 12:47
1  
Now it's not correct that "In Python 2.5 or later, there is no difference for integers..." because 3.0 is later than 2.5 :) – ShreevatsaR Oct 10 '08 at 19:34
Good point. I edited this again to further clarify. – Eli Courtwright Oct 11 '08 at 13:54
edited: You can "fix" division since Python 2.2! (Just read the linked PEP) – kaizer.se Nov 9 at 23:51
show 1 more comment
vote up 0 vote down

// is floor division, it will always give you the integer floor of the result. The other is 'regular' division.

link|flag
vote up 2 vote down

The double '//' is floor division:

>>> 7//3
2
link|flag
vote up 3 vote down

// implements "floor division", regardless of your type. So 1.0/2.0 will give 0.5, but both 1/2, 1//2 and 1.0//2.0 will give 0

See http://www.python.org/doc/2.2.3/whatsnew/node7.html for details

link|flag
vote up 0 vote down

6//2.5 2.0 6/2.5 2.3999999999999999

link|flag
vote up 0 vote down

I think // means floor division. Could be wrong.

link|flag
vote up 1 vote down

Please refer The Problem with Integer Division for the reason for introducing the // operator to do integer division.

link|flag
vote up 1 vote down

As everyone has already answered, // is floor division.

Why this is important is that // is unambiguously floor division, in all Python versions from 2.2, including Python 3.x versions.

The behavior of / can change depending on:

  • Active __future__ import or not (module-local)
  • Python command line option, either -Q old or -Q new
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.