I've found some strange behaviour in python regarding negative numbers:
>>> a = -5
>>> a % 4
3
Could anyone explain what's going on?
|
I've found some strange behaviour in python regarding negative numbers:
Could anyone explain what's going on? |
||||
|
Unlike C or C++, Python's modulo operator (
It is chosen over the C behavior because a nonnegative result is often more useful. An example is to compute week days. If today is Tuesday (day #2), what is the week day N days before? In Python we can compute with
but in C, if N ≥ 3, we get a negative number which is an invalid number, and we need to manually fix it up by adding 7:
(See http://en.wikipedia.org/wiki/Modulo_operator for how the sign of result is determined for different languages.) |
||||
|
Here's an explanation from Guido van Rossum: http://python-history.blogspot.com/2010/08/why-pythons-integer-division-floors.html Essentially, it's so that a/b = q with remainder r preserves the relationships b*q + r = a and 0 <= r < b. |
|||
|
|
|
There is no one best way to handle integer division and mods with negative numbers. It would be nice if Which one to keep is a difficult question, and there are arguments for both sides. C and C++ round integer division towards zero (so |
|||
|
|
|
Modulo, equivalence classes for 4:
Here's a link to modulo's behavior with negative numbers. (Yes, I googled it) |
||||
|
|
..., -9, -5, -1, 3, 7, ...– NullUserException♦ Oct 7 '10 at 15:19