&gt; No, because variables are untyped in Python there is no need for<br>&gt; casting. In Python values have types, variables are just names. You just<br>&gt; use the value and if it has the correct type it will work.<br>&gt;
<br>&gt; There are some functions that transform values from one type to another.<br>&gt; These are not really casts, they create new values of a different type.<br>&gt; Some examples are int(), str(), float(). For example:
<br>&gt;<br>&gt; &gt;&gt;&gt; i=3<br>&gt; &gt;&gt;&gt; type(i)<br>&gt; &lt;type 'int'&gt;<br>&gt; &gt;&gt;&gt; f=float(i)<br>&gt; &gt;&gt;&gt; f<br>&gt; 3.0<br>&gt; &gt;&gt;&gt; type(f)<br>&gt; &lt;type 'float'&gt;<br>&gt;
<br>&gt; Kent<br>I realize now that. Thank you ;-)<br><br>PD: I think python is better than I thought before. xD<br>PD2: Apologize for my English.<br clear="all"><br>-- <br>Edgar A. Rodriguez V.