News

Modular arithmetic Now, in the Python documentation 2, you’ll see // referred to as floor division. You’ll also see that % is referred to as the modulo operator. It’s fine to think about % as the ...
# De modulo-operator (oftewel %) vertelt je wat er overblijft als je een getal door een ander getal deelt.
The modulo operator is first introduced in the solution to "Ch 7: Loops C4. Prime?". The explanation of the modulo operator, on the other hand, is not found until "Ch 8: Lists 16. Modulo operator in ...
An operator is, in general, a typographical symbol that means something special to the Python interpreter, and tells it to do something with the literals or variables next to it. Many are basic ...