hello all<br>here is a disturbing session with min() and max() for which I have absolutely no explanation<br><br>&gt;&gt;&gt; t = (952L, 945L, 941L, 939L, 949L, 972L, 956L, 965L, 973L, 965L)<br>&gt;&gt;&gt; min(t)<br>939L<br>
&gt;&gt;&gt; max(t)<br>exceptions.TypeError&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Traceback (most recent call last)<br>TypeError: &#39;int&#39; object is not callable<br><br><br>why doesn&#39;t max(t) work?! I am using python 2.4.4
<br>thanks for any insight you might have<br>-frank<br><br>