Possible Duplicate:
What is the reason for having '//' in Python?
What is the purpose of the // operator?
x=10 y=2 print x/y print x//y
Both output 5 as the value.
What is the purpose of the x=10 y=2 print x/y print x//y Both output |
|||
|
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Integer division vs. float division:
Or as they put it in the Python docs,
In Python 3.x you get different results, so if you really want the floored version, get into the habit of using
|
|||||
|