Like what others said, use the Decimal class to avoid this.<br><br>from decimal import Decimal<br>x=Decimal(5)<br>x/=2<br>x*=Decimal("11.4")<br>print x <br># 28.50<br><br><div class="gmail_quote">On Mon, May 26, 2008 at 1:28 AM,  <<a href="mailto:notnorwegian@yahoo.se">notnorwegian@yahoo.se</a>> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">>>> x = 5<br>
>>> x /= 2<br>
>>> x<br>
2<br>
>>> x *=11.4<br>
>>> x<br>
22.800000000000001<br>
<br>
ok where does the 1 in the come from?<br>
<font color="#888888">--<br>
<a href="http://mail.python.org/mailman/listinfo/python-list" target="_blank">http://mail.python.org/mailman/listinfo/python-list</a><br>
</font></blockquote></div><br><br clear="all"><br>-- <br>Harsh J<br><a href="http://www.harshj.com">www.harshj.com</a>