I am new to python, I know that the operator // is integer division, that is it removes the reminder. but when I executed the following code:
print 15 // -4
I thought the answer would be -3
but instead the answer was -4
please can anybody explain to me why?