User ΤΖΩΤΖΙΟΥ - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T03:43:45Z http://stackoverflow.com/feeds/user/6899 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1947030/ternary-operator-python/1948943#1948943 1 Answer by ΤΖΩΤΖΙΟΥ for Ternary Operator - Python ΤΖΩΤΖΙΟΥ 2009-12-22T20:32:04Z 2009-12-22T20:45:36Z <h3>indexing into a list</h3> <p>The use of</p> <pre><code>[expression_when_false, expression_when_true][condition] # or (expression_when_false, expression_when_true)[condition] </code></pre> <p>takes advantage of the fact that in Python True equals (but isn't!) 1 and False equals (but isn't!) 0. The expression above constructs a list of two elements, and uses the result of <em>condition</em> to index in the list and return only one expression. The drawback of this method is that both expressions are evaluated.</p> <h3>and-or shortcuts</h3> <p>Since the creation of Python, there was a form of this operation:</p> <pre><code>condition and expression_when_true or expression_when_false </code></pre> <p>This takes a shortcut and evaluates only one expression, but has a bug-prone drawback: the *expression_when_true* <strong>must not</strong> evaluate to a non-true value, otherwise the result is *expression_when_false*. <code>and</code> and <code>or</code> are "short-circuiting" in Python, and the following rules apply:</p> <pre><code>a and b #→ a if a is false, else b a or b #→ a if a is true, else b </code></pre> <p>If <em>condition</em> is false, then *expression_when_true* is never evaluated and the result is *expression_when_false*. OTOH, if <em>condition</em> is true, then the result is the result of (*expression_when_true* or *expression_when_false*); consult the table above.</p> <h3>ternary conditional operator</h3> <p>Of course, since Python 2.5, there is a ternary conditional operator:</p> <pre><code>expression_when_true if condition else expression_when_false </code></pre> <p>The strange (if you are accustomed to the C-like ternary conditional operator) order of the operands is attributed <a href="http://www.python.org/doc/2.5/whatsnew/pep-308.html" rel="nofollow">to many things</a>; the general intention is that <em>condition</em> should be true most of the time, so that the most common output comes first and is most visible.</p> http://stackoverflow.com/questions/1895538/for-loop-os-listdir-not-working-correctly/1902386#1902386 0 Answer by ΤΖΩΤΖΙΟΥ for For Loop, os.listdir() not working correctly ΤΖΩΤΖΙΟΥ 2009-12-14T17:48:01Z 2009-12-14T17:48:01Z <p>There's a context manager that you can use to temporarily store the cwd in that question:</p> <p><a href="http://stackoverflow.com/questions/169070/python-how-do-i-write-a-decorator-that-restores-the-cwd">How do I write a decorator that restores the cwd?</a></p> http://stackoverflow.com/questions/1780763/getting-every-odd-variable-in-a-list/1900019#1900019 0 Answer by ΤΖΩΤΖΙΟΥ for Getting every odd variable in a list? ΤΖΩΤΖΙΟΥ 2009-12-14T10:05:58Z 2009-12-14T10:05:58Z <p>To have a range of odd/even numbers up to and possibly including a number n, you can:</p> <pre><code>def odd_numbers(n): return range(1, n+1, 2) def even_numbers(n): return range(0, n+1, 2) </code></pre> <p>If you want a generic algorithm that will take the items with odd <em>indexes</em> from a sequence, you can do the following:</p> <pre><code>import itertools def odd_indexes(sequence): return itertools.islice(sequence, 1, None, 2) def even_indexes(sequence): return itertools.islice(sequence, 0, None, 2) </code></pre> http://stackoverflow.com/questions/1845078/what-regular-expression-can-never-match/1882970#1882970 0 Answer by ΤΖΩΤΖΙΟΥ for What regular expression can never match? ΤΖΩΤΖΙΟΥ 2009-12-10T18:18:38Z 2009-12-10T18:18:38Z <p>I believe that</p> <pre><code>\Z RE FAILS! \A </code></pre> <p>covers even the cases where the regular expression includes flags like MULTILINE, DOTALL etc.</p> <pre><code>&gt;&gt;&gt; import re &gt;&gt;&gt; x=re.compile(r"\Z RE FAILS! \A") &gt;&gt;&gt; x.match('') &gt;&gt;&gt; x.match(' RE FAILS! ') &gt;&gt;&gt; </code></pre> <p>I believe (but I haven't benchmarked it) that whatever the length (> 0) of the string between <code>\Z</code> and <code>\A</code>, the time-to-failure should be constant.</p> http://stackoverflow.com/questions/1876587/optimal-way-to-access-a-value-from-the-last-iteration-in-a-loop/1877915#1877915 1 Answer by ΤΖΩΤΖΙΟΥ for Optimal way to access a value from the last iteration in a loop ΤΖΩΤΖΙΟΥ 2009-12-10T00:32:20Z 2009-12-10T00:32:20Z <p>Guido's time machine to the rescue!</p> <p>From the <a href="http://docs.python.org/library/itertools.html#recipes" rel="nofollow">itertools recipes</a> page:</p> <pre><code>import itertools def pairwise(iterable): "s -&gt; (s0,s1), (s1,s2), (s2, s3), ..." a, b = itertools.tee(iterable) next(b, None) return itertools.izip(a, b) </code></pre> <p>This should be the most appropriate method (consider the iterable was <code>(random.randint(100) for x in xrange(1000))</code>; here <code>iter(iterable); next(iterable)</code> as a secondary iterator might not provide correct functionality.</p> <p>Use it in your loop as:</p> <pre><code>for prev_item, item in pairwise(iterable): … </code></pre> http://stackoverflow.com/questions/1873575/how-could-i-get-a-frame-with-a-scrollbar-in-pythons-tkinter/1877862#1877862 1 Answer by ΤΖΩΤΖΙΟΥ for How could I get a Frame with a scrollbar in Python's Tkinter? ΤΖΩΤΖΙΟΥ 2009-12-10T00:14:59Z 2009-12-10T00:14:59Z <p>If you can use Tix, there is the ScrolledWindow widget which has a <code>window</code> Frame and one or two Scrollbar widgets:</p> <pre><code>import Tix as tk r= tk.Tk() r.title("test scrolled window") sw= tk.ScrolledWindow(r, scrollbar=tk.Y) # just the vertical scrollbar sw.pack(fill=tk.BOTH, expand=1) for i in xrange(10): e= tk.Entry(sw.window) e.pack() r.mainloop() </code></pre> <p>Change the size of the root window. You will want to add code to the focus_get event of the Entry widgets to scroll the ScrolledWindow when tabbing through the keyboard.</p> <p>Otherwise, you will have to use a Canvas widget (you can add Label, Entry and Text subwidgets) and write a lot more code yourself to implement your required functionality.</p> http://stackoverflow.com/questions/1830370/why-ghost-process-appears-after-kill-9/1853165#1853165 0 Answer by ΤΖΩΤΖΙΟΥ for why Ghost Process appears after kill -9 ΤΖΩΤΖΙΟΥ 2009-12-05T19:24:41Z 2009-12-05T19:24:41Z <p>Zombie processes are actually just an entry in the process table. They do not run, they don't consume memory; the entry just stays because the parent hasn't checked their exit code. You can either do a double fork as Gonzalo suggests, or you can filter out all ps lines with a Z in the S column.</p> http://stackoverflow.com/questions/1832893/python-regex-matching-unicode-properties/1852463#1852463 1 Answer by ΤΖΩΤΖΙΟΥ for Python regex matching Unicode properties ΤΖΩΤΖΙΟΥ 2009-12-05T15:24:31Z 2009-12-05T15:24:31Z <p>Note that while <code>\p{Ll}</code> has no equivalent in Python regular expressions, <code>\p{Zs}</code> should be covered by <code>'(?u)\s'</code>. The <code>(?u)</code>, as the docs say, “Make \w, \W, \b, \B, \d, \D, \s and \S dependent on the Unicode character properties database.” and <code>\s</code> means any spacing character.</p> http://stackoverflow.com/questions/1841949/python-gtk-module-opens-display-on-import/1846792#1846792 0 Answer by ΤΖΩΤΖΙΟΥ for python gtk module opens display on import ΤΖΩΤΖΙΟΥ 2009-12-04T12:55:18Z 2009-12-04T12:55:18Z <p>If the remote machine has vncserver installed, you can have a dummy server running and connect to that. Sample instructions:</p> <pre><code>remotemachine $ vncserver -depth 16 -geometry 800x600 :7 New 'X' desktop is remotemachine:7 Starting applications specified in /home/user/.vnc/xstartup Log file is /home/user/.vnc/userve:7.log remotemachine $ DISPLAY=:7 python -c 'import myscript.py' … remotemachine $ vncserver -kill :7 Killing Xtightvnc process ID 32058 </code></pre> http://stackoverflow.com/questions/63776/bit-reversal-of-an-integer-ignoring-integer-size-and-endianness 3 Bit reversal of an integer, ignoring integer size and endianness ΤΖΩΤΖΙΟΥ 2008-09-15T15:10:49Z 2009-12-04T06:31:13Z <p>Given an integer typedef:</p> <pre><code>typedef unsigned int TYPE; </code></pre> <p>or</p> <pre><code>typedef unsigned long TYPE; </code></pre> <p>I have the following code to reverse the bits of an integer:</p> <pre><code>TYPE max_bit= (TYPE)-1; void reverse_int_setup() { TYPE bits= (TYPE)max_bit; while (bits &lt;&lt;= 1) max_bit= bits; } TYPE reverse_int(TYPE arg) { TYPE bit_setter= 1, bit_tester= max_bit, result= 0; for (result= 0; bit_tester; bit_tester&gt;&gt;= 1, bit_setter&lt;&lt;= 1) if (arg &amp; bit_tester) result|= bit_setter; return result; } </code></pre> <p>One just needs first to run reverse_int_setup(), which stores an integer with the highest bit turned on, then any call to reverse_int(<em>arg</em>) returns <em>arg</em> with its bits reversed (to be used as a key to a binary tree, taken from an increasing counter, but that's more or less irrelevant).</p> <p>Is there a platform-agnostic way to have in compile-time the correct value for max_int after the call to reverse_int_setup(); Otherwise, is there an algorithm you consider <em>better/leaner</em> than the one I have for reverse_int()?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1834825/how-do-ldexp-and-frexp-work-in-python/1836897#1836897 1 Answer by ΤΖΩΤΖΙΟΥ for How do ldexp and frexp work in python? ΤΖΩΤΖΙΟΥ 2009-12-03T00:31:38Z 2009-12-03T00:31:38Z <p>This is a question you can easily answer yourself:</p> <pre><code>$ python &gt;&gt;&gt; import math &gt;&gt;&gt; help(math.frexp) Help on built-in function frexp in module math: </code></pre> <p>Notice the <em>built-in</em>. It's in C.</p> <pre><code>&gt;&gt;&gt; import urllib &gt;&gt;&gt; help(urllib.urlopen) Help on function urlopen in module urllib: </code></pre> <p>No <em>built-in</em> here. It's in Python.</p> http://stackoverflow.com/questions/1835787/what-is-the-range-of-values-a-float-can-have-in-python/1836341#1836341 1 Answer by ΤΖΩΤΖΙΟΥ for What is the range of values a float can have in Python? ΤΖΩΤΖΙΟΥ 2009-12-02T22:33:03Z 2009-12-02T22:55:09Z <p>Just playing around; here is an algorithmic method to find the minimum and maximum positive float, hopefully in any python implementation where <code>float("+inf")</code> is acceptable:</p> <pre><code>def find_float_limits(): """Return a tuple of min, max positive numbers representable by the platform's float""" # first, make sure a float's a float if 1.0/10*10 == 10.0: raise RuntimeError("Your platform's floats aren't") minimum= maximum= 1.0 infinity= float("+inf") # first find minimum last_minimum= 2*minimum while last_minimum &gt; minimum &gt; 0: last_minimum= minimum minimum*= 0.5 # now find maximum operands= [] while maximum &lt; infinity: operands.append(maximum) try: maximum*= 2 except OverflowError: break last_maximum= maximum= 0 while operands and maximum &lt; infinity: last_maximum= maximum maximum+= operands.pop() return last_minimum, last_maximum if __name__ == "__main__": print (find_float_limits()) # python 2 and 3 friendly </code></pre> <p>In my case,</p> <pre><code>$ python so1835787.py (4.9406564584124654e-324, 1.7976931348623157e+308) </code></pre> <p>so denormals are used.</p> http://stackoverflow.com/questions/1835809/problem-with-variable-scoping-in-python/1836163#1836163 0 Answer by ΤΖΩΤΖΙΟΥ for Problem with variable scoping in Python ΤΖΩΤΖΙΟΥ 2009-12-02T22:04:27Z 2009-12-02T22:04:27Z <p>In cases where you have a <code>try…except</code> suite and you want code to run iff <em>no</em> exceptions have occurred, it's a good habit to write the code as follows:</p> <pre><code>try: # code that could fail except Exception1: # handle exception1 except Exception2: # handle exception2 else: # the code-that-could-fail didn't # here runs the code that depends # on the success of the try clause </code></pre> http://stackoverflow.com/questions/1835756/using-try-vs-if-in-python/1836111#1836111 2 Answer by ΤΖΩΤΖΙΟΥ for Using try vs if in python ΤΖΩΤΖΙΟΥ 2009-12-02T21:57:37Z 2009-12-02T21:57:37Z <p>Please ignore my solution if the code I provide is not obvious at first glance and you have to read the explanation after the code sample.</p> <p>Can I assume that the "no value returned" means the return value is None? If yes, or if the "no value" is False boolean-wise, you can do the following, since your code essentially treats "no value" as "do not iterate":</p> <pre><code>for r in function() or (): # process items </code></pre> <p>If <code>function()</code> returns something that's not True, you iterate over the empty tuple, i.e. you don't run any iterations. This is essentially LBYL.</p> http://stackoverflow.com/questions/1821204/how-to-get-unicode-month-name-in-python/1822383#1822383 0 Answer by ΤΖΩΤΖΙΟΥ for How to get unicode month name in Python? ΤΖΩΤΖΙΟΥ 2009-11-30T21:03:47Z 2009-11-30T21:03:47Z <p>What you need is:</p> <pre><code>… myencoding= locale.getpreferredencoding() print repr(calendar.month_abbr[6].decode(myencoding)) … </code></pre> http://stackoverflow.com/questions/368805/python-unicodedecodeerror-am-i-misunderstanding-encode/370199#370199 16 Answer by ΤΖΩΤΖΙΟΥ for Python UnicodeDecodeError - Am I misunderstanding encode? ΤΖΩΤΖΙΟΥ 2008-12-16T00:45:11Z 2009-11-25T23:22:55Z <p>…there's a reason they're called "encodings"…</p> <p>A little preamble: think of unicode as the norm, or the ideal state. Unicode is just a table of characters. №65 is latin capital A. №937 is greek capital omega. Just that.<br> In order for a computer to store and-or manipulate Unicode, it has to <em>encode</em> it into bytes. The most straightforward <em>encoding</em> of Unicode is UCS-4; every character occupies 4 bytes, and all ~1000000 characters are available. The 4 bytes contain the number of the character in the Unicode tables as a 4-byte integer. Another very useful encoding is UTF-8, which can encode any Unicode character with one to four bytes. But there also are some limited encodings, like "latin1", which include a very limited range of characters, mostly used by Western countries. Such <em>encodings</em> use only one byte per character.</p> <p>Basically, Unicode can be <em>encoded</em> with many encodings, and encoded strings can be <em>decoded</em> to Unicode. The thing is, Unicode came quite late, so all of us that grew up using an 8-bit <em>character set</em> learned too late that all this time we worked with <em>encoded</em> strings. The encoding could be ISO8859-1, or windows CP437, or CP850, or, or, or, depending on our system default.</p> <p>So when, in your source code, you enter the string "add “Monitoring“ to list" (and I think you wanted the string "add “Monitoring” to list", note the second quote), you actually are using a string already <em>encoded</em> according to your system's default codepage (by the byte \x93 I assume you use Windows codepage 1252, “Western”). If you want to get Unicode from that, you need to <em>decode</em> the string from the "cp1252" encoding.</p> <p>So, what you meant to do, was:</p> <pre><code>"add \x93Monitoring\x94 to list".decode("cp1252", "ignore") </code></pre> <p>It's unfortunate that Python 2.x includes an <code>.encode</code> method for strings too; this is a convenience function for "special" encodings, like the "zip" or "rot13" or "base64" ones, which have nothing to do with Unicode.</p> <p>Anyway, all you have to remember for your to-and-fro Unicode conversions is:</p> <ul> <li>a Unicode string gets <em>encoded</em> to a Python 2.x string (actually, a sequence of bytes)</li> <li>a Python 2.x string gets <em>decoded</em> to a Unicode string</li> </ul> <p>In both cases, you need to specify the <em>encoding</em> that will be used.</p> <p>I'm not very clear, I'm sleepy, but I sure hope I help.</p> <p>PS A humorous side note: Mayans didn't have Unicode; ancient Romans, ancient Greeks, ancient Egyptians didn't too. They all had their own "encodings", and had little to no respect for other cultures. All these civilizations crumbled to dust. Think about it people! Make your apps Unicode-aware, for the good of mankind. :)</p> <p>PS2 Please don't spoil the previous message by saying "But the Chinese…". If you feel inclined or obligated to do so, though, delay it by thinking that the Unicode BMP is populated mostly by chinese ideograms, ergo Chinese is the basis of Unicode. I can go on inventing outrageous lies, as long as people develop Unicode-aware applications. Cheers!</p> http://stackoverflow.com/questions/1232204/uniscribe-kerning/1773983#1773983 0 Answer by ΤΖΩΤΖΙΟΥ for Uniscribe Kerning ΤΖΩΤΖΙΟΥ 2009-11-21T00:06:39Z 2009-11-21T00:06:39Z <p>If you're running on Windows XP, I believe you have to have enabled the following in Control Panel's Regional Options:</p> <ul> <li>Install files for complex scripts and right-to-left languages (including Thai)</li> <li>Install files for East Asian Languages</li> </ul> <p>for Uniscribe kerning to work.</p> http://stackoverflow.com/questions/1690605/reliable-and-efficient-key-value-database-for-linux/1759980#1759980 1 Answer by ΤΖΩΤΖΙΟΥ for Reliable and efficient key--value database for Linux? ΤΖΩΤΖΙΟΥ 2009-11-18T23:56:55Z 2009-11-20T19:17:38Z <p>Another suggestion is <a href="http://tdb.samba.org/" rel="nofollow">TDB</a> (a part of the Samba project). I've used it through the <a href="http://pypi.python.org/pypi/tdb/1.0" rel="nofollow">tdb</a> module, however I can't say I've tested its reliability on crashes; the projects I used it in didn't have such requirements, and I can't find relevant documentation.</p> http://stackoverflow.com/questions/774316/python-difflib-highlighting-differences-inline/788780#788780 6 Answer by ΤΖΩΤΖΙΟΥ for Python difflib: highlighting differences inline? ΤΖΩΤΖΙΟΥ 2009-04-25T12:05:12Z 2009-11-18T20:52:52Z <p>For your simple example:</p> <pre><code>import difflib def show_diff(seqm): """Unify operations between two compared strings seqm is a difflib.SequenceMatcher instance whose a &amp; b are strings""" output= [] for opcode, a0, a1, b0, b1 in seqm.get_opcodes(): if opcode == 'equal': output.append(seqm.a[a0:a1]) elif opcode == 'insert': output.append("&lt;ins&gt;" + seqm.b[b0:b1] + "&lt;/ins&gt;") elif opcode == 'delete': output.append("&lt;del&gt;" + seqm.a[a0:a1] + "&lt;/del&gt;") elif opcode == 'replace': raise NotImplementedError, "what to do with 'replace' opcode?" else: raise RuntimeError, "unexpected opcode" return ''.join(output) &gt;&gt;&gt; sm= difflib.SequenceMatcher(None, "lorem ipsum dolor sit amet", "lorem foo ipsum dolor amet") &gt;&gt;&gt; show_diff(sm) 'lorem&lt;ins&gt; foo&lt;/ins&gt; ipsum dolor &lt;del&gt;sit &lt;/del&gt;amet' </code></pre> <p>This works with strings. You should decide what to do with "replace" opcodes.</p> http://stackoverflow.com/questions/1661621/finding-the-highest-key/1747244#1747244 0 Answer by ΤΖΩΤΖΙΟΥ for Finding the highest key ΤΖΩΤΖΙΟΥ 2009-11-17T07:54:14Z 2009-11-17T07:54:14Z <pre><code>d= {5:3, 4:1, 12:2, 14:9} </code></pre> <p>To print the value associated with the largest key:</p> <pre><code>print max(d.iteritems())[1] </code></pre> <p>To print the key associated with the largest value:</p> <pre><code>import operator print max(d.iteritems(), key=operator.itemgetter(1))[0] </code></pre> http://stackoverflow.com/questions/1728330/how-to-get-processs-grandparent-id/1732073#1732073 0 Answer by ΤΖΩΤΖΙΟΥ for How to get process's grandparent id ΤΖΩΤΖΙΟΥ 2009-11-13T21:35:02Z 2009-11-13T21:35:02Z <pre><code>from __future__ import with_statement def pnid(pid=None, N=1): "Get parent (if N==1), grandparent (if N==2), ... of pid (or self if not given)" if pid is None: pid= "self" while N &gt; 0: filename= "/proc/%s/status" % pid with open(filename, "r") as fp: for line in fp: if line.startswith("PPid:"): _, _, pid= line.rpartition("\t") pid= pid.rstrip() # drop the '\n' at end break else: raise RuntimeError, "can't locate PPid line in %r" % filename N-= 1 return int(pid) # let it fail through &gt;&gt;&gt; pnid() 26558 &gt;&gt;&gt; import os &gt;&gt;&gt; os.getppid() 26558 &gt;&gt;&gt; pnid(26558) 26556 &gt;&gt;&gt; pnid(N=2) 26556 &gt;&gt;&gt; pnid(N=3) 1 </code></pre> http://stackoverflow.com/questions/1693088/what-is-the-use-of-pythons-basic-optimizations-mode-python-o/1698167#1698167 0 Answer by ΤΖΩΤΖΙΟΥ for What is the use of Python's basic optimizations mode? (`python -O`) ΤΖΩΤΖΙΟΥ 2009-11-08T22:35:40Z 2009-11-08T22:35:40Z <p>Another use for the <code>-O</code> flag is that the value of the <code>__debug__</code> builtin variable is set to <code>False</code>.</p> <p>So, basically, your code can have a lot of "debugging" paths like:</p> <pre><code>if __debug__: # output all your favourite debugging information # and then more </code></pre> <p>which, when running under <code>-O</code>, won't even be included as bytecode in the <code>.pyo</code> file; a poor man's C-ish #ifdef.</p> <p>Remember that docstrings are being dropped <em>only</em> when the flag is <code>-OO</code>.</p> http://stackoverflow.com/questions/1662140/pythons-datetime-and-end-of-the-month/1663240#1663240 1 Answer by ΤΖΩΤΖΙΟΥ for python's datetime and end of the month ΤΖΩΤΖΙΟΥ 2009-11-02T19:41:05Z 2009-11-02T22:37:57Z <pre><code>import datetime def eom(dt): sometime_next_month= dt.replace(day=1) + datetime.timedelta(days=31) start_of_next_month= sometime_next_month.replace(day=1,hour=0,minute=0,second=0) return start_of_next_month - datetime.timedelta(seconds=1) &gt;&gt;&gt; eom(datetime.datetime(1972, 2, 1, 23, 50, 50)) datetime.datetime(1972, 2, 29, 23, 59, 59) &gt;&gt;&gt; eom(datetime.datetime(1980, 12, 31)) datetime.datetime(1980, 12, 31, 23, 59, 59) </code></pre> http://stackoverflow.com/questions/1659659/how-to-write-a-memory-efficient-python-program/1660263#1660263 1 Answer by ΤΖΩΤΖΙΟΥ for How to write a memory efficient Python program? ΤΖΩΤΖΙΟΥ 2009-11-02T09:40:03Z 2009-11-02T09:40:03Z <p>Like others have said, you need at least the following two changes:</p> <ol> <li><p>Do not create a huge list of integers with <code>range</code></p> <pre><code># use xrange for i in xrange(0, count): # UNPACK FIXED LENGTH OF BINARY DATA HERE yield (field1, field2, field3) </code></pre></li> <li><p>do not create a huge string as the full file body to be written at once</p> <pre><code># use writelines f = open(filename, 'w') f.writelines((datum + os.linesep) for datum in data) f.close() </code></pre></li> </ol> <p>Even better, you could write the file as:</p> <pre><code> items = GetData(url) f = open(filename, 'w') for item in items: f.write(';'.join(item) + os.linesep) f.close() </code></pre> http://stackoverflow.com/questions/312443/how-do-you-split-a-list-into-evenly-sized-chunks-in-python/312644#312644 21 Answer by ΤΖΩΤΖΙΟΥ for How do you split a list into evenly sized chunks in Python? ΤΖΩΤΖΙΟΥ 2008-11-23T15:48:53Z 2009-11-02T00:49:05Z <p>Directly from the Python documentation (recipes for itertools):</p> <pre><code>from itertools import izip, chain, repeat def grouper(n, iterable, padvalue=None): "grouper(3, 'abcdefg', 'x') --&gt; ('a','b','c'), ('d','e','f'), ('g','x','x')" return izip(*[chain(iterable, repeat(padvalue, n-1))]*n) </code></pre> <p>An alternate take, as suggested by J.F.Sebastian:</p> <pre><code>from itertools import izip_longest def grouper(n, iterable, padvalue=None): "grouper(3, 'abcdefg', 'x') --&gt; ('a','b','c'), ('d','e','f'), ('g','x','x')" return izip_longest(*[iter(iterable)]*n, fillvalue=padvalue) </code></pre> <p>I guess Guido's time machine works—worked—will work—will have worked—was working again.</p> http://stackoverflow.com/questions/1655560/how-do-you-flush-python-sockets/1656960#1656960 0 Answer by ΤΖΩΤΖΙΟΥ for How do you flush Python sockets? ΤΖΩΤΖΙΟΥ 2009-11-01T11:42:56Z 2009-11-01T11:42:56Z <p>What you are trying to do, is split your data into "batches".</p> <p>For example, you are operating on "batches" whenever you read "lines" off a file. What defines a "line"? It's a sequence of bytes terminated by '\n'. Another example is: you read 64KiB "chunks" off a file. What defines a "chunk"? You do, since you read 65536 bytes every time. You want a variable length "chunk"? You just prefix your "chunk" with its size, then read the "chunk". "aiff" files (whose implementations are also the .wav and .avi files of MS Windows) and "mov" files are organized like that.</p> <p>These three methods are the most fundamental methods to organize a stream of bytes, whatever the medium:</p> <ol> <li>record separators</li> <li>fixed size records</li> <li>records prefixed with their size.</li> </ol> <p>They can be mixed and/or modified. For example, you could have "variable record separators", like an XML reader: read bytes from first '&lt;' until first '>', add a slash after first '&lt;' and call it end-of-record, read stream until end-of-record. That's just a crude description.</p> <p>Choose a method, and implement it in both the writer and reader. If you also document your choices, you've just defined your first protocol.</p> http://stackoverflow.com/questions/1457045/implementation-of-set-reconciliation-algorithm/1603692#1603692 0 Answer by ΤΖΩΤΖΙΟΥ for Implementation of set reconciliation algorithm ΤΖΩΤΖΙΟΥ 2009-10-21T21:13:57Z 2009-10-21T21:13:57Z <p>This code is out of my head, and thus covered by whatever license applies for code samples in this site.</p> <pre><code># given two finite sequences of unique and hashable data, # return needed opcodes and data needed for reconciliation def set_reconcile(src_seq, dst_seq): "Return required operations to mutate src_seq into dst_seq" src_set= set(src_seq) # no-op if already of type set dst_set= set(dst_seq) # ditto for item in src_set - dst_set: yield 'delete', item for item in dst_set - src_set: yield 'create', item </code></pre> <p>Use as follows:</p> <pre><code>for opcode, datum in set_reconcile(machine1_stuff, machine2_stuff): if opcode == 'create': # act accordingly elif opcode == 'delete': # likewise else: raise RuntimeError, 'unexpected opcode' </code></pre> http://stackoverflow.com/questions/1432480/any-way-to-clear-python-shell/1576881#1576881 0 Answer by ΤΖΩΤΖΙΟΥ for Any way to clear python shell? ΤΖΩΤΖΙΟΥ 2009-10-16T08:40:54Z 2009-10-16T08:40:54Z <p>As mark.ribau said, it seems that there is no way to clear the Text widget in idle. One should edit the <code>EditorWindow.py</code> module and add a method and a menu item in the EditorWindow class that does something like:</p> <pre><code>self.text.tag_remove("sel", "1.0", "end") self.text.delete("1.0", "end") </code></pre> <p>and perhaps some more tag management of which I'm unaware of.</p> http://stackoverflow.com/questions/1470350/why-is-the-windowserror-while-deleting-the-temporary-file/1472979#1472979 2 Answer by ΤΖΩΤΖΙΟΥ for Why is the WindowsError while deleting the temporary file? ΤΖΩΤΖΙΟΥ 2009-09-24T17:02:49Z 2009-09-24T17:02:49Z <p>From the <a href="http://docs.python.org/library/tempfile.html#tempfile.mkstemp" rel="nofollow">documentation</a>:</p> <blockquote> <p>mkstemp() returns a tuple containing an OS-level handle to an open file (as would be returned by os.open()) and the absolute pathname of that file, in that order. New in version 2.3. </p> </blockquote> <p>So, <code>mkstemp</code> returns both the OS file handle to <em>and</em> the filename of the temporary file. When you re-open the temp file, the original returned file handle is still open (no-one stops you from opening twice or more the same file in your program).</p> <p>If you want to operate on that OS file handle as a python file object, you can:</p> <pre><code>&gt;&gt;&gt; __, filename = tempfile.mkstemp() &gt;&gt;&gt; fptr= os.fdopen(__) </code></pre> <p>and then continue with your normal code.</p> http://stackoverflow.com/questions/1471987/how-do-i-parse-an-http-date-string-in-python/1472336#1472336 4 Answer by ΤΖΩΤΖΙΟΥ for How do I parse an HTTP date-string in Python? ΤΖΩΤΖΙΟΥ 2009-09-24T15:10:31Z 2009-09-24T16:37:30Z <pre><code>&gt;&gt;&gt; import email.utils as eut &gt;&gt;&gt; eut.parsedate('Wed, 23 Sep 2009 22:15:29 GMT') (2009, 9, 23, 22, 15, 29, 0, 1, -1) </code></pre> <p>If you want a <code>datetime.datetime</code> object, you can do:</p> <pre><code>def my_parsedate(text): return datetime.datetime(*eut.parsedate(text)[:6]) </code></pre> http://stackoverflow.com/questions/1826824/os-kill-not-raising-an-oserror-however-i-do-not-see-the-given-pid-running/1828286#1828286 Comment by ΤΖΩΤΖΙΟΥ on os.kill not raising an OSError, however I do not see the given pid running ΤΖΩΤΖΙΟΥ 2009-12-22T22:43:25Z 2009-12-22T22:43:25Z <code>grep [8]503</code> may be an old Unix trick, but <code>ps -p8503</code> is almost as old, allows multiple arguments <i>and</i> won't select other processes too (say, pids 18503 and 28503). http://stackoverflow.com/questions/1823293/optimized-method-for-calculating-cosine-distance-in-python/1823735#1823735 Comment by ΤΖΩΤΖΙΟΥ on Optimized method for calculating cosine distance in Python ΤΖΩΤΖΙΟΥ 2009-12-22T21:18:14Z 2009-12-22T21:18:14Z @kaizer.se: <code>str.join</code> is a special case, since when it has a list, it first sums the lens, then it creates a string of total size and fills it with the parts; otherwise, it builds the string the obvious way (for part in iterable: result+= part) http://stackoverflow.com/questions/1947030/ternary-operator-python/1947113#1947113 Comment by ΤΖΩΤΖΙΟΥ on Ternary Operator - Python ΤΖΩΤΖΙΟΥ 2009-12-22T20:34:39Z 2009-12-22T20:34:39Z jmanning2k: I reverted the answer to its initial form, since it was already correct. Think of it as an English phrase: &quot;You should be retired if older than 65, else working.&quot; http://stackoverflow.com/questions/1933919/a-pythonic-way-how-to-find-if-a-value-is-between-two-values-in-a-list/1933932#1933932 Comment by ΤΖΩΤΖΙΟΥ on A pythonic way how to find if a value is between two values in a list ΤΖΩΤΖΙΟΥ 2009-12-20T17:47:37Z 2009-12-20T17:47:37Z Adrian, no-one is forcing you to write everything twice. If you intended it to be a joke, I didn't get it; if you meant it, you don't know Python well enough. http://stackoverflow.com/questions/1778368/python-float-str-float-weirdness/1778381#1778381 Comment by ΤΖΩΤΖΙΟΥ on Python float - str - float weirdness ΤΖΩΤΖΙΟΥ 2009-12-12T23:31:02Z 2009-12-12T23:31:02Z I am not sure, but I perceive &quot;precision&quot; and &quot;exactness&quot; as synonyms, precision being the usual term. http://stackoverflow.com/questions/1876587/optimal-way-to-access-a-value-from-the-last-iteration-in-a-loop/1877445#1877445 Comment by ΤΖΩΤΖΙΟΥ on Optimal way to access a value from the last iteration in a loop ΤΖΩΤΖΙΟΥ 2009-12-10T00:35:07Z 2009-12-10T00:35:07Z If I might return the favour: <code>for prev in it: break</code> is written <code>next(it, None)</code> nowadays :) http://stackoverflow.com/questions/1748641/boolean-in-python/1748672#1748672 Comment by ΤΖΩΤΖΙΟΥ on Boolean in Python ΤΖΩΤΖΙΟΥ 2009-12-08T00:32:43Z 2009-12-08T00:32:43Z bravado: what's the point not accepting the answer you find most helpful? It's totally irrelevant if another answer is upvoted more. http://stackoverflow.com/questions/1743293/why-does-my-python-program-average-only-33-cpu-per-process-how-can-i-make-pytho/1743362#1743362 Comment by ΤΖΩΤΖΙΟΥ on Why does my Python program average only 33% CPU per process? How can I make Python use all available CPU? ΤΖΩΤΖΙΟΥ 2009-12-06T20:44:51Z 2009-12-06T20:44:51Z When hovering over the up/down vote arrow, the alt text is clear: &quot;this answer is useful/not useful&quot;. Idiotically, it seems that many SO users read &quot;I like this answer/I don't like this answer and this person should die a horrible death&quot; instead, and vote accordingly. If I had to downvote an answer, I'd downvote nicholaides' answer, but I can't, for the miniscule chance he's right (although I strongly believe he's not). http://stackoverflow.com/questions/1853673/writing-a-faster-python-spider Comment by ΤΖΩΤΖΙΟΥ on Writing a Faster Python Spider ΤΖΩΤΖΙΟΥ 2009-12-06T09:50:28Z 2009-12-06T09:50:28Z Your best bet to make the process faster is to improve your connection speed. That will be your bottleneck, not Python speed. http://stackoverflow.com/questions/1743293/why-does-my-python-program-average-only-33-cpu-per-process-how-can-i-make-pytho/1743302#1743302 Comment by ΤΖΩΤΖΙΟΥ on Why does my Python program average only 33% CPU per process? How can I make Python use all available CPU? ΤΖΩΤΖΙΟΥ 2009-12-06T09:41:34Z 2009-12-06T09:41:34Z This is <i>most probably</i> a GIL related issue on a 3-core machine, not a memory or disk access issue. http://stackoverflow.com/questions/1742866/compute-crc-of-file-in-python/1742958#1742958 Comment by ΤΖΩΤΖΙΟΥ on compute crc of file in python ΤΖΩΤΖΙΟΥ 2009-12-06T09:36:26Z 2009-12-06T09:36:26Z The OP wants to see the CRC32 as hex, not as base64-encoded. http://stackoverflow.com/questions/1496456/how-to-treat-the-first-line-of-a-file-differently-in-python/1496491#1496491 Comment by ΤΖΩΤΖΙΟΥ on How to treat the first line of a file differently in Python? ΤΖΩΤΖΙΟΥ 2009-12-05T02:33:21Z 2009-12-05T02:33:21Z **open vs file**: see what Guido says on the subject in <a href="http://mail.python.org/pipermail/python-dev/2004-July/045921.html" rel="nofollow">mail.python.org/pipermail/python-dev/&hellip;</a> and in <a href="http://mail.python.org/pipermail/python-dev/2004-July/045967.html" rel="nofollow">mail.python.org/pipermail/python-dev/&hellip;</a>. It's probable that in the future you might have to change your code from <code>file</code> to <code>open</code>. http://stackoverflow.com/questions/1850633/python-typeerror-float-object-is-not-callable/1850670#1850670 Comment by ΤΖΩΤΖΙΟΥ on Python: TypeError: 'float' object is not callable ΤΖΩΤΖΙΟΥ 2009-12-05T02:23:45Z 2009-12-05T02:23:45Z This line: <code>set = ('SS' + repr(temp))</code> is going to cause you pain. http://stackoverflow.com/questions/1001601/why-are-there-extra-blank-lines-in-my-python-program-output/1001658#1001658 Comment by ΤΖΩΤΖΙΟΥ on Why are there extra blank lines in my python program output? ΤΖΩΤΖΙΟΥ 2009-12-03T00:00:47Z 2009-12-03T00:00:47Z Amen, John, amen. http://stackoverflow.com/questions/19132/expression-versus-statement/19139#19139 Comment by ΤΖΩΤΖΙΟΥ on Expression Versus Statement ΤΖΩΤΖΙΟΥ 2009-12-02T13:57:58Z 2009-12-02T13:57:58Z <code>foo.voidFunc(1);</code> is an expression with a void value. <code>while</code> and <code>if</code> are statements.