0
I didnt get this
5 Antworten
+ 3
What exactly didn't you understand?
+ 3
What is it that you're not getting, please be clear enough with your question so that you can get the response you need from the community
+ 3
That's known as modulus operator 10%3 will give the remainder when you divide 10 by 3 which is 1 // is a floor division
+ 2
// and % how do they work and thanks for replying
+ 1
Is exactly like ✳AsterisK✳ says an example is:
4 % 4 = 0
8 % 3 = 2
9 // 3 = 3
1 // 2 = 0 cause (0.5 ~ 0)