What is the value of -3 // 2?
Explanation
Floor division chooses the greatest integer no larger than the exact quotient, so -1.5 floors to -2. Truncation toward zero would give -1, but that is not the rule used by this operator.
Floor division chooses the greatest integer no larger than the exact quotient, so -1.5 floors to -2. Truncation toward zero would give -1, but that is not the rule used by this operator.