I am trying to divide 2 float numbers using integer division. I am not using numpy
or any other library.
Just pure python.
6.3//2.1
#output
2.0
I tried to break my problem into fractions like:
(63/10)//(21/10)
#output
2.0
Still the same output.
I know 2.1 * 3.0
== 6.3
So, I am expecting 3.0
as output.
Please can someone explain?