Is there a benefit to using one over the other? They both seem to return the same results.
>>> 6/3
2
>>> 6//3
2
|
feedback
|
|
In Python 3.0, In Python 2.2 or later in the 2.x line, there is no difference for integers unless you perform a Regardless of the future import, You can find a detailed description at http://www.python.org/doc/2.2.3/whatsnew/node7.html | |||||||||||||||
feedback
|
|
As everyone has already answered, Why this is important is that The behavior of
| |||
|
feedback
|
|
// 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 | |||
|
feedback
|
|
Please refer The Problem with Integer Division for the reason for introducing the // operator to do integer division. | |||
|
feedback
|
|
| |||
|
feedback
|