Thank you!<br>*opens manual again*<br><br>Wim<br><br><div><span class="gmail_quote">On 1/26/06, <b class="gmail_sendername">Orri Ganel</b> &lt;<a href="mailto:singingxduck@gmail.com">singingxduck@gmail.com</a>&gt; wrote:</span>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">


  


Rinzwind wrote:
<blockquote cite="http://mid4677730601261152j4fc1a30dy533a8e80e76c35b7@mail.gmail.com" type="cite"><div><span class="e" id="q_109084b20df40515_1">In basic I can use SGN to get back -1, 0,&nbsp; +1 if a number
is &lt;0, 0, &gt;0.<br>
I searched on&nbsp; the web for a bit but sgn and sign give me way too many
discussions about Decimals. <a href="http://python.org" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">python.org</a>
with numbers/digits doesn't tell about a function.<br>
  <br>
Maybe Python uses a different name for it so I am not looking for the
correct wording :( Sucks not knowing syntax from my memory and having
to look them up alot).
  <br>
  <br>
Wim<br>
  <br>
  <br>
  </span></div><pre><hr size="4" width="90%">
_______________________________________________<br>Tutor maillist  -  <a href="mailto:Tutor@python.org" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">Tutor@python.org</a>
<a href="http://mail.python.org/mailman/listinfo/tutor" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">http://mail.python.org/mailman/listinfo/tutor</a>
  </pre>
</blockquote>
<br>
Well, the <tt>cmp()</tt> function does this if you compare the number
to 0:<br>
<br>
<tt>&gt;&gt;&gt; cmp(-34,0)<br>
-1<br>
&gt;&gt;&gt; cmp(0,0)<br>
0<br>
&gt;&gt;&gt; cmp(23,0)<br>
1<br>
<br>
</tt>Of course, that's not all <tt>cmp()</tt> is good for, but it
would work in this case.<br>
<br>
HTH,<br>
Orri<br><span class="sg">
<pre cols="72">-- <br>Email: singingxduck AT gmail DOT com<br>AIM: singingxduck<br>Programming Python for the fun of it.</pre>



</span></blockquote></div><br>