In Python 2, what is the difference between '/' and '//' when used for division?
Is there a benefit to using one over the other? In Python 2, they both seem to return the same results:>>> 6/32>>> 6//32 1:In Python 3.0, 5 / 2 will return 2.5 and 5 // 2 will return 2. The former is floating point division, and the lat