I need definitions | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

I need definitions

Since i study math in french, i just need to know what everything actually means

26th Sep 2018, 7:41 PM
Nicaus
2 Answers
+ 1
like for python, whats // and %
26th Sep 2018, 7:42 PM
Nicaus
0
% is modulus like a%b here you just keep subtracting untill you get a number between 0 and b for example 4%2= 4-2=2 (2 is still equal or greater than 2) 2-2=0 (the modulus here is 0) another one 13 % 4 13>=4? (true) 13-4=9 9>=4? (true) 9-4=5 5>=4? (true) 5-4=1 1>=4? (false) modulus = 1
26th Sep 2018, 8:55 PM
~Just Another Brick In The Wall~
~Just Another Brick In The Wall~ - avatar