0
يريت حد يشرح معني \\و٪ بالعربي
5 Respostas
+ 3
Double Slash (//) is called Floor Division.
In Python3 it's used in numeric calculation (division) to get integer quotient.
example:
Normal Division. Floor Division
10/2 = 4.5 or 10//2 = 4
50/16 = 3.125 or 50//16 = 3
NOTE:
FLOOR DIVISION IS EXPRESSED BY 2 FORWARD SLASHES
https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2273/
-----
%
If we divide 1.25 by .5 than, we can write:
1.25= .5*2(here .5*2=1)+.25 (here .25 is remainder, here further division approaches not followed as normal mathematical process follows, in normal mathematical process, we can write 1.25/.5 = 2.5)
hence,
1.25 divided by .5, quotient is 2 and .25 isn't divided by .5 so it is remainder.
above term is expressed by modulus sign (%),where % shows only remainder,not shows quotient.
it is expressed by
5%2 = 1
11%4 = 3
5%3 = 2
3%5 = 3
6%5 = 1
12%7 = 5
2%2 = 0
1.25%.5 = .25
+ 1
Ebram Agaiby please use Google Translator, it's awesome.
+ 1
ok .i 'm not bad in english i didnot use to learn math in english. and thank for all
0
in Arabic please.
0
طب لو عايز اتعلم الرياضيات دي بطريقة اسهل في اي برنامج او كتاب او شرح