Anjanesh Lekshminarayanan wrote:
a = 1
b = 25
a / b
0
float(a) / b
0.040000000000000001

from __future__ import division
a = 1
b = 25
a / b
0.040000000000000001

In what simple way can I get just 0.04 ?

Short answer: use 3.1:
>>> 1//25
0
>>> 1/25
0.04
;-)

But you should really try to understand the answers others gave.

tjr

--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to