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
// is floor division, it will always give you the integer floor of the result. The other is 'regular' division.
//