0
Can someone please explain quotients?
As simple as you can call you pls explain quotients in python thanksđ
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
+ 2
Its division. --> /
Quotient (or answer from division) will be a float