0
What does % mean
5 Respostas
+ 2
It is known as modulus operator, it gives you a remainder
For example:- 7%4= 3
So, 3 is the remainder
and if you still have any problem then you can google it with choose program tag(like python, java etc...)
+ 2
Thank you
+ 1
In Python, it gets the remainder of a division.
For example:
>> 7 % 2
2 goes in 7 three times (2+2+2 = 6), so the remainder is one.
https://www.sololearn.com/Discuss/2628475/?ref=app
0
Simply it means remainder
%=remainder
0
% is a modules operator, it is use for reminder
Example: 10%2 = 0, 10%3 = 1
10/2 = 5, 10/3 = 3.3