Is there a benefit to using one over the other? In Python 2, they both seem to return the same results:
>>> 6/3 2 >>> 6//3 2
The answer of the equation is rounded to the next smaller integer or float with .0 as decimal point.
>>>print 5//2 2 >>> print 5.0//2 2.0 >>>print 5//2.0 2.0 >>>print 5.0//2.0 2.0