I&#39;ve done this: <br><br>&gt;&gt;&gt; c = float<br>&gt;&gt;&gt; c<br>&lt;type &#39;float&#39;&gt;<br>&gt;&gt;&gt; c = 3.3<br>&gt;&gt;&gt; c<br>3.2999999999999998<br><br>I&#39;ve done it with and without the c = float and still it rounds the number down. Why? And more importantly: is it possible to make Python more accurate? I need the exact number and not something close to it for my new application. <br>
<br>I&#39;m looking for a = 3.3 and nothing else :)<br><br>Best regards! <br>/MJ<br><br>