Hi I would like to know if there is any way to obtain a float result from a division between two integers other than using "from __future__ import division"?
I am not looking for the .0 'trick'. Example 4/5.0 = 0.8.
I want to be able to do 4/5 = 0.8.
Thanks.