How to get the rest of the division ? | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
+ 1

How to get the rest of the division ?

#here was my first lesson a=7%(5//2) print (a) a=1 #here I got 2 (5/2=2.5), how to get the .5 rest? b=5//2 print(b) b=2 #here I got 1 (7/2=3.5), how to get the .5 rest? c=7%2 print(c) c=1

16th Jul 2018, 9:52 AM
Joás Lima
Joás Lima - avatar
3 Antworten
+ 5
Joás Lima just a minor problem Using a single slash to divide numbers produces a decimal (or float, as it is called in programming)👇 https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2271/ and 👇this has examples too https://www.programiz.com/python-programming/operators atb 👍 edit: please be more specific
16th Jul 2018, 11:09 AM
Daljeet Singh
Daljeet Singh - avatar
+ 3
You can do this: ==> (7/2) - (7-(7%2))/2 evaluation: ==> (3.5) - (7-(1))/2 ==> 3.5 - (6)/2 ==> 3.5 - 3 ==> 0.5
16th Jul 2018, 11:16 AM
Jonathan Pizarra (JS Challenger)
Jonathan Pizarra (JS Challenger) - avatar
+ 2
Thank you guys. but for what I see there isnt an unic operator to do that. Jonathan Pizarra that great. O surely must do that way to get what I want.
16th Jul 2018, 4:36 PM
Joás Lima
Joás Lima - avatar