0

Can someone please explain quotients?

As simple as you can call you pls explain quotients in python thanks💕

15th Oct 2020, 5:18 PM
bccspirit
bccspirit - avatar
2 Answers
+ 3
a=6 b=2 quotient=a/b print(quotient) Output will be 3.0 this will give you quotient in float if u want in int means non floating points thrn u can use use // quotient=a//b= 3
15th Oct 2020, 5:22 PM
A S Raghuvanshi
A S Raghuvanshi - avatar
+ 2
Its division. --> / Quotient (or answer from division) will be a float
15th Oct 2020, 5:20 PM
Slick
Slick - avatar