All,<br><br>I was showing a co-worker some python today (using the trunk) when I stumbled upon this.&nbsp; I was not sure what to think since I have never really experimented with using spaces like this.&nbsp; So here tis.&nbsp; Be careful to notice the spaces as they are significant here.
<br><br>&gt;&gt;&gt; 1.3.__str__()<br>&#39;1.3&#39;<br><br>&gt;&gt;&gt; 1.3&nbsp;&nbsp;&nbsp; .__str__()<br>&#39;1.3&#39;<br><br>&gt;&gt;&gt; a = &quot; somestring&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;<br><br>
&gt;&gt;&gt; a&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .split()<br>
[&#39;somestring&#39;]<br><br>
&gt;&gt;&gt; a.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; split()<br>
[&#39;somestring&#39;]<br><br><br>Cool I suppose, except here&#39;s an odd man out:<br><br>&gt;&gt;&gt; 1.__str__()<br>
&nbsp; File &quot;&lt;stdin&gt;&quot;, line 1<br>
&nbsp;&nbsp;&nbsp; 1.__str__()<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ^<br>
SyntaxError: invalid syntax<br>
<br>
&gt;&gt;&gt; 1 .__str__()<br>
&#39;1&#39;<br><br>Joseph Armbruster