Anjanesh Lekshminarayanan wrote:
a = 1 b = 25 a / b0float(a) / b0.040000000000000001from __future__ import division a = 1 b = 25 a / b0.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