of course. but i tried only the code, not rewriting the pixelget part into that, because I have to understand it first.<br><br><br>so, i should look into ipython&#39;s doc for this code?<br><br><br>ok, <br><br>import array
<br>def f7(list):<br>&nbsp;&nbsp;&nbsp; return array.array(&#39;B&#39;, list).tostring()
<br>f7([97, 98, 99])<br>Out[6]:&#39;abc&#39;<br><br><br>searching with ipython search engine returns returns&nbsp; &quot;parrel computing&quot;<br><br>ack, <br><br>so i call the array.array function, and tostring()&nbsp;&nbsp; function,
<br><br>I have no idea how to read that. @_@&nbsp; <br>what a great one liner!<br><br><br><br><br><br><div><span class="gmail_quote">On 7/1/07, <b class="gmail_sendername">
Luke Paireepinart</b> &lt;<a href="mailto:rabidpoobear@gmail.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">rabidpoobear@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;">

elis aeris wrote:<br>&gt; my reply<br>&gt; oh crancky!&nbsp;&nbsp; C#&nbsp;&nbsp;!<br>&gt;<br>&gt; <a href="http://en.wikipedia.org/wiki/Iron_Python" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">http://en.wikipedia.org/wiki/Iron_Python
</a><br>&gt;<br>&gt; i better try to find the best way to do it with the official python
<br>&gt; genre before venturing into that world of pain without PIL !<br>Please don&#39;t reply directly to me.<br><br>Iron Python is an implementation of Python in .NET<br>similarly Jython is an implementation of Python in Java.
<br>This doesn&#39;t have anythign to do with their libraries.<br>The example code<br>&gt; &gt;&gt; In [4]:import array<br>&gt; &gt;&gt; In [5]:def f7(list):<br>&gt; &gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;.5.:&nbsp;&nbsp;return array.array(&#39;B&#39;, list).tostring()
<br>&gt; &gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;.5.:<br>&gt; &gt;&gt;<br>&gt; &gt;&gt; In [6]:f7([97, 98, 99])<br>&gt; &gt;&gt; Out[6]:&#39;abc&#39;<br>Would run in IronPython, Jython or cPython.<br>The way that the code is marked up (adding In or &gt;&gt;&gt; before each line)
<br>is a feature of the IDE that one uses.<br>Did you even try the code?<br>-Luke<br></blockquote></div><br>