when i was dealing with some large numbers like,
take any random number 3289568273632879456235
.
I found that in Chrome
or Firefox
console
3289568273632879456235 % 6 = 0
but in Python
shell
3289568273632879456235 % 6 = 5
.
after that i found that answer from Python is correct.
so i don't understand why there is different answers.
can anybody explain to me.